diff options
Diffstat (limited to 'Zend/tests/bug63111.phpt')
-rw-r--r-- | Zend/tests/bug63111.phpt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Zend/tests/bug63111.phpt b/Zend/tests/bug63111.phpt index 077e350bc2..2b06d3583a 100644 --- a/Zend/tests/bug63111.phpt +++ b/Zend/tests/bug63111.phpt @@ -9,9 +9,9 @@ interface MyInterface { static function bar(); } abstract class Bar { - static function foo() { - echo "ok\n"; - } + static function foo() { + echo "ok\n"; + } } var_dump(is_callable(array("Foo", "bar"))); var_dump(is_callable("Foo::bar")); |