diff options
Diffstat (limited to 'Zend/tests/selfParent_001.phpt')
-rw-r--r-- | Zend/tests/selfParent_001.phpt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/tests/selfParent_001.phpt b/Zend/tests/selfParent_001.phpt index 9d8cd6e22f..e7f1d2defa 100644 --- a/Zend/tests/selfParent_001.phpt +++ b/Zend/tests/selfParent_001.phpt @@ -5,7 +5,7 @@ Test when constants are initialised. See also selfParent_002.phpt. class A { const myConst = "const in A"; const myDynConst = self::myConst; - + public static function test() { var_dump(self::myDynConst); } |