summaryrefslogtreecommitdiff
path: root/Zend/tests/call_static_007.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/call_static_007.phpt
parentd2cb200e10ada6fa44c54a29292bb4665728fff0 (diff)
downloadphp-git-f8d795820e780a6322e054c26c581570613c14f0.tar.gz
Reindent phpt files
Diffstat (limited to 'Zend/tests/call_static_007.phpt')
-rw-r--r--Zend/tests/call_static_007.phpt18
1 files changed, 9 insertions, 9 deletions
diff --git a/Zend/tests/call_static_007.phpt b/Zend/tests/call_static_007.phpt
index 419f102310..00ae448b9a 100644
--- a/Zend/tests/call_static_007.phpt
+++ b/Zend/tests/call_static_007.phpt
@@ -4,15 +4,15 @@ Testing __call and __callstatic
<?php
class a {
- public function __call($a, $b) {
- print "__call: ". $a ."\n";
- }
- static public function __callStatic($a, $b) {
- print "__callstatic: ". $a ."\n";
- }
- public function baz() {
- self::Bar();
- }
+ public function __call($a, $b) {
+ print "__call: ". $a ."\n";
+ }
+ static public function __callStatic($a, $b) {
+ print "__callstatic: ". $a ."\n";
+ }
+ public function baz() {
+ self::Bar();
+ }
}