fix #640, error in comment for getStaticProperty

This commit is contained in:
Greg Beaver 2004-02-27 02:27:00 +00:00
parent 3e56af98e0
commit 7c6b73ce38

View File

@ -193,7 +193,7 @@ class PEAR
/**
* If you have a class that's mostly/entirely static, and you need static
* properties, you can use this method to simulate them. Eg. in your method(s)
* do this: $myVar = &PEAR::getStaticProperty('myVar');
* do this: $myVar = &PEAR::getStaticProperty('myclass', 'myVar');
* You MUST use a reference, or they will not persist!
*
* @access public