]> granicus.if.org Git - php/commitdiff
fix #640, error in comment for getStaticProperty
authorGreg Beaver <cellog@php.net>
Fri, 27 Feb 2004 02:27:00 +0000 (02:27 +0000)
committerGreg Beaver <cellog@php.net>
Fri, 27 Feb 2004 02:27:00 +0000 (02:27 +0000)
pear/PEAR.php

index 87e988c27c9513af95c8d0abba7fa857512f5bb9..17b4df51f50ce017bb0ae3e1185f9c287e874823 100644 (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