diff options
Diffstat (limited to 'Zend/tests/get_class_methods_001.phpt')
-rw-r--r-- | Zend/tests/get_class_methods_001.phpt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Zend/tests/get_class_methods_001.phpt b/Zend/tests/get_class_methods_001.phpt index 78745219ba..d0d51220aa 100644 --- a/Zend/tests/get_class_methods_001.phpt +++ b/Zend/tests/get_class_methods_001.phpt @@ -3,16 +3,16 @@ get_class_methods(): Testing scope --FILE-- <?php -abstract class X { +abstract class X { public function a() { } private function b() { } - protected function c() { } + protected function c() { } } class Y extends X { private function bb() { } - - static public function test() { + + static public function test() { var_dump(get_class_methods('X')); var_dump(get_class_methods('Y')); } |