summaryrefslogtreecommitdiff
path: root/Zend/tests/bug48533.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/bug48533.phpt
parentd2cb200e10ada6fa44c54a29292bb4665728fff0 (diff)
downloadphp-git-f8d795820e780a6322e054c26c581570613c14f0.tar.gz
Reindent phpt files
Diffstat (limited to 'Zend/tests/bug48533.phpt')
-rw-r--r--Zend/tests/bug48533.phpt30
1 files changed, 15 insertions, 15 deletions
diff --git a/Zend/tests/bug48533.phpt b/Zend/tests/bug48533.phpt
index 3dfbc658ec..39b1db9ee7 100644
--- a/Zend/tests/bug48533.phpt
+++ b/Zend/tests/bug48533.phpt
@@ -4,21 +4,21 @@ Bug #48533 (__callStatic is not invoked for private/protected methods)
<?php
class foo {
- private function a() {
- var_dump(1);
- }
- public function b() {
- var_dump(2);
- }
- protected function c() {
- var_dump(3);
- }
- static function __callstatic($a, $b) {
- var_dump('__callStatic::'. $a);
- }
- public function __call($a, $b) {
- var_dump('__call::'. $a);
- }
+ private function a() {
+ var_dump(1);
+ }
+ public function b() {
+ var_dump(2);
+ }
+ protected function c() {
+ var_dump(3);
+ }
+ static function __callstatic($a, $b) {
+ var_dump('__callStatic::'. $a);
+ }
+ public function __call($a, $b) {
+ var_dump('__call::'. $a);
+ }
}
$x = new foo;