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 /Zend/tests/exception_014.phpt | |
parent | d2cb200e10ada6fa44c54a29292bb4665728fff0 (diff) | |
download | php-git-f8d795820e780a6322e054c26c581570613c14f0.tar.gz |
Reindent phpt files
Diffstat (limited to 'Zend/tests/exception_014.phpt')
-rw-r--r-- | Zend/tests/exception_014.phpt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Zend/tests/exception_014.phpt b/Zend/tests/exception_014.phpt index fedeee21c9..aaf411dae5 100644 --- a/Zend/tests/exception_014.phpt +++ b/Zend/tests/exception_014.phpt @@ -3,14 +3,14 @@ Exceptions on improper access to static class properties --FILE-- <?php class C { - private $p = 0; + private $p = 0; } $x = new C; try { - var_dump($x->p); + var_dump($x->p); } catch (Error $e) { - echo "\nException: " . $e->getMessage() . " in " , $e->getFile() . " on line " . $e->getLine() . "\n"; + echo "\nException: " . $e->getMessage() . " in " , $e->getFile() . " on line " . $e->getLine() . "\n"; } var_dump($x->p); |