diff options
Diffstat (limited to 'Zend/tests/bug48228.phpt')
-rw-r--r-- | Zend/tests/bug48228.phpt | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/Zend/tests/bug48228.phpt b/Zend/tests/bug48228.phpt index d91ded28be..a4fa5483b9 100644 --- a/Zend/tests/bug48228.phpt +++ b/Zend/tests/bug48228.phpt @@ -4,19 +4,19 @@ Bug #48228 (crash when exception is thrown while passing function arguments) <?php function do_throw() { - throw new Exception(); + throw new Exception(); } class aa { - function check() - { - } + function check() + { + } - function dosome() - { - $this->check(do_throw()); - } + function dosome() + { + $this->check(do_throw()); + } } $l_aa=new aa(); |