summaryrefslogtreecommitdiff
path: root/Zend/tests/bug34678.phpt
diff options
context:
space:
mode:
authorNikita Popov <nikita.ppv@gmail.com>2020-02-03 22:52:20 +0100
committerNikita Popov <nikita.ppv@gmail.com>2020-02-03 22:52:20 +0100
commitf8d795820e780a6322e054c26c581570613c14f0 (patch)
tree99d3ae01ce564752807341c5743863b4c92513f8 /Zend/tests/bug34678.phpt
parentd2cb200e10ada6fa44c54a29292bb4665728fff0 (diff)
downloadphp-git-f8d795820e780a6322e054c26c581570613c14f0.tar.gz
Reindent phpt files
Diffstat (limited to 'Zend/tests/bug34678.phpt')
-rw-r--r--Zend/tests/bug34678.phpt16
1 files changed, 8 insertions, 8 deletions
diff --git a/Zend/tests/bug34678.phpt b/Zend/tests/bug34678.phpt
index 2a13201f26..86db44357e 100644
--- a/Zend/tests/bug34678.phpt
+++ b/Zend/tests/bug34678.phpt
@@ -3,22 +3,22 @@ Bug #34678 (__call(), is_callable() and static methods)
--FILE--
<?php
class A {
- public function __call($m, $a) {
- echo "__call\n";
- }
+ public function __call($m, $a) {
+ echo "__call\n";
+ }
}
class B extends A {
- public static function foo() {
- echo "foo\n";
- }
+ public static function foo() {
+ echo "foo\n";
+ }
}
if (is_callable(array('B', 'foo'))) {
- call_user_func(array('B', 'foo'));
+ call_user_func(array('B', 'foo'));
}
if (is_callable(array('A', 'foo'))) {
- call_user_func(array('A', 'foo'));
+ call_user_func(array('A', 'foo'));
}
?>
--EXPECT--