diff options
Diffstat (limited to 'Zend/tests/bug55247.phpt')
-rw-r--r-- | Zend/tests/bug55247.phpt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/tests/bug55247.phpt b/Zend/tests/bug55247.phpt index 8c21019abd..163cc721fb 100644 --- a/Zend/tests/bug55247.phpt +++ b/Zend/tests/bug55247.phpt @@ -4,11 +4,11 @@ Request #55247 (Parser problem with static calls using string method name) <?php class Test{ public static function __callStatic($method, $arguments) - { + { echo $method . PHP_EOL; } public function __call($method, $arguments) - { + { echo $method . PHP_EOL; } } |