summaryrefslogtreecommitdiff
path: root/Zend/tests/lsb_019.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/lsb_019.phpt')
-rw-r--r--Zend/tests/lsb_019.phpt4
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/tests/lsb_019.phpt b/Zend/tests/lsb_019.phpt
index 1683ffe638..92a444aee8 100644
--- a/Zend/tests/lsb_019.phpt
+++ b/Zend/tests/lsb_019.phpt
@@ -1,5 +1,5 @@
--TEST--
-ZE2 Late Static Binding properties and methods declared as protected and overridden as public.
+ZE2 Late Static Binding properties and methods declared as protected and overridden as public.
--FILE--
<?php
class TestClass {
@@ -8,7 +8,7 @@ class TestClass {
protected static function staticFunction() {
return 'TestClassFunction';
}
-
+
public static function testStaticVar() {
TestClass::$staticVar = 'TestClassStatic';
ChildClass1::$staticVar = 'ChildClassStatic';