diff options
Diffstat (limited to 'Zend/tests/argument_restriction_006.phpt')
-rw-r--r-- | Zend/tests/argument_restriction_006.phpt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/tests/argument_restriction_006.phpt b/Zend/tests/argument_restriction_006.phpt index dd744d5ea9..2df0e1e90d 100644 --- a/Zend/tests/argument_restriction_006.phpt +++ b/Zend/tests/argument_restriction_006.phpt @@ -4,12 +4,12 @@ Bug #60174 (Notice when array in method prototype error) <?php Abstract Class Base { public function test($foo, $extra = array("test")) { - } + } } class Sub extends Base { public function test($foo, $extra) { - } + } } ?> --EXPECTF-- |