summaryrefslogtreecommitdiff
path: root/pear/PEAR.php
diff options
context:
space:
mode:
authorGreg Beaver <cellog@php.net>2004-02-27 02:27:00 +0000
committerGreg Beaver <cellog@php.net>2004-02-27 02:27:00 +0000
commit7c6b73ce38f2bdf259ba99bef3712d5c5f5803fc (patch)
treef3d20f16f4e0e9c91a74fdb5c9e5455b2620ac91 /pear/PEAR.php
parent3e56af98e0718bc3c524e56d4b84eebadd108f45 (diff)
downloadphp-git-7c6b73ce38f2bdf259ba99bef3712d5c5f5803fc.tar.gz
fix #640, error in comment for getStaticProperty
Diffstat (limited to 'pear/PEAR.php')
-rw-r--r--pear/PEAR.php2
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