diff options
Diffstat (limited to 'Zend/tests/lsb_020.phpt')
-rw-r--r-- | Zend/tests/lsb_020.phpt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/tests/lsb_020.phpt b/Zend/tests/lsb_020.phpt index a7f5b42e67..cc5b257c34 100644 --- a/Zend/tests/lsb_020.phpt +++ b/Zend/tests/lsb_020.phpt @@ -1,5 +1,5 @@ --TEST-- -ZE2 Late Static Binding properties and methods declared as public and overridden as public. +ZE2 Late Static Binding properties and methods declared as public and overridden as public. --FILE-- <?php class TestClass { @@ -8,7 +8,7 @@ class TestClass { public static function staticFunction() { return 'TestClassFunction'; } - + public static function testStaticVar() { TestClass::$staticVar = 'TestClassStatic'; ChildClass1::$staticVar = 'ChildClassStatic'; |