diff options
author | Nikita Popov <nikita.ppv@gmail.com> | 2020-02-03 22:52:20 +0100 |
---|---|---|
committer | Nikita Popov <nikita.ppv@gmail.com> | 2020-02-03 22:52:20 +0100 |
commit | f8d795820e780a6322e054c26c581570613c14f0 (patch) | |
tree | 99d3ae01ce564752807341c5743863b4c92513f8 /ext/standard/tests/bug75220.phpt | |
parent | d2cb200e10ada6fa44c54a29292bb4665728fff0 (diff) | |
download | php-git-f8d795820e780a6322e054c26c581570613c14f0.tar.gz |
Reindent phpt files
Diffstat (limited to 'ext/standard/tests/bug75220.phpt')
-rw-r--r-- | ext/standard/tests/bug75220.phpt | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/ext/standard/tests/bug75220.phpt b/ext/standard/tests/bug75220.phpt index ca6c3ef4ea..f0ba55a702 100644 --- a/ext/standard/tests/bug75220.phpt +++ b/ext/standard/tests/bug75220.phpt @@ -9,16 +9,16 @@ $a->bar('foo'); class B {}; class A extends B { - function bar($func) - { - var_dump('foo'); - var_dump(is_callable('parent::foo')); - var_dump(is_callable(array('parent', 'foo'))); - } + function bar($func) + { + var_dump('foo'); + var_dump(is_callable('parent::foo')); + var_dump(is_callable(array('parent', 'foo'))); + } - function __call($func, $args) - { - } + function __call($func, $args) + { + } }; ?> |