summaryrefslogtreecommitdiff
path: root/Zend/tests/lsb_013.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/lsb_013.phpt')
-rw-r--r--Zend/tests/lsb_013.phpt12
1 files changed, 6 insertions, 6 deletions
diff --git a/Zend/tests/lsb_013.phpt b/Zend/tests/lsb_013.phpt
index 3f32dc3a66..3af7f1bea7 100644
--- a/Zend/tests/lsb_013.phpt
+++ b/Zend/tests/lsb_013.phpt
@@ -4,15 +4,15 @@ ZE2 Late Static Binding is_callable() and static::method()
<?php
class Test1 {
- static function test() {
- var_dump(is_callable("static::ok"));
- var_dump(is_callable(array("static","ok")));
- }
+ static function test() {
+ var_dump(is_callable("static::ok"));
+ var_dump(is_callable(array("static","ok")));
+ }
}
class Test2 extends Test1 {
- static function ok() {
- }
+ static function ok() {
+ }
}
Test1::test();
Test2::test();