diff options
author | Greg Beaver <cellog@php.net> | 2004-02-27 02:27:00 +0000 |
---|---|---|
committer | Greg Beaver <cellog@php.net> | 2004-02-27 02:27:00 +0000 |
commit | 7c6b73ce38f2bdf259ba99bef3712d5c5f5803fc (patch) | |
tree | f3d20f16f4e0e9c91a74fdb5c9e5455b2620ac91 /pear/PEAR.php | |
parent | 3e56af98e0718bc3c524e56d4b84eebadd108f45 (diff) | |
download | php-git-7c6b73ce38f2bdf259ba99bef3712d5c5f5803fc.tar.gz |
fix #640, error in comment for getStaticProperty
Diffstat (limited to 'pear/PEAR.php')
-rw-r--r-- | pear/PEAR.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pear/PEAR.php b/pear/PEAR.php index 87e988c27c..17b4df51f5 100644 --- a/pear/PEAR.php +++ b/pear/PEAR.php @@ -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 |