summaryrefslogtreecommitdiff
path: root/Zend/tests/get_class_methods_003.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/get_class_methods_003.phpt')
-rw-r--r--Zend/tests/get_class_methods_003.phpt10
1 files changed, 5 insertions, 5 deletions
diff --git a/Zend/tests/get_class_methods_003.phpt b/Zend/tests/get_class_methods_003.phpt
index 5c3c09f4e0..982b7cbc0f 100644
--- a/Zend/tests/get_class_methods_003.phpt
+++ b/Zend/tests/get_class_methods_003.phpt
@@ -3,7 +3,7 @@ get_class_methods(): Testing scope
--FILE--
<?php
-interface I {
+interface I {
function aa();
function bb();
static function cc();
@@ -13,7 +13,7 @@ class X {
public function a() { }
protected function b() { }
private function c() { }
-
+
static public function static_a() { }
static protected function static_b() { }
static private function static_c() { }
@@ -22,15 +22,15 @@ class X {
class Y extends X implements I {
public function aa() { }
public function bb() { }
-
+
static function cc() { }
-
+
public function __construct() {
var_dump(get_class_methods('I'));
var_dump(get_class_methods('Y'));
var_dump(get_class_methods('X'));
}
-
+
public function __destruct() { }
}