summaryrefslogtreecommitdiff
path: root/tests/classes/__call_005.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 /tests/classes/__call_005.phpt
parentd2cb200e10ada6fa44c54a29292bb4665728fff0 (diff)
downloadphp-git-f8d795820e780a6322e054c26c581570613c14f0.tar.gz
Reindent phpt files
Diffstat (limited to 'tests/classes/__call_005.phpt')
-rw-r--r--tests/classes/__call_005.phpt20
1 files changed, 10 insertions, 10 deletions
diff --git a/tests/classes/__call_005.phpt b/tests/classes/__call_005.phpt
index 33c4df8e49..8c4d52efa7 100644
--- a/tests/classes/__call_005.phpt
+++ b/tests/classes/__call_005.phpt
@@ -3,19 +3,19 @@ When __call() is invoked via ::, ensure private implementation of __call() in su
--FILE--
<?php
class A {
- private function __call($strMethod, $arrArgs) {
- echo "In " . __METHOD__ . "($strMethod, array(" . implode(',',$arrArgs) . "))\n";
- var_dump($this);
- }
+ private function __call($strMethod, $arrArgs) {
+ echo "In " . __METHOD__ . "($strMethod, array(" . implode(',',$arrArgs) . "))\n";
+ var_dump($this);
+ }
}
class B extends A {
- function test() {
- A::test1(1,'a');
- B::test2(1,'a');
- self::test3(1,'a');
- parent::test4(1,'a');
- }
+ function test() {
+ A::test1(1,'a');
+ B::test2(1,'a');
+ self::test3(1,'a');
+ parent::test4(1,'a');
+ }
}
$b = new B();