summaryrefslogtreecommitdiff
path: root/Zend/tests/get_class_methods_001.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/get_class_methods_001.phpt')
-rw-r--r--Zend/tests/get_class_methods_001.phpt8
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 a2a3d0ca20..877b41cbcd 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'));
}