diff options
-rw-r--r-- | Zend/tests/bug63336.phpt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Zend/tests/bug63336.phpt b/Zend/tests/bug63336.phpt index 314129081d..d2c3d41131 100644 --- a/Zend/tests/bug63336.phpt +++ b/Zend/tests/bug63336.phpt @@ -9,13 +9,13 @@ define("TEST", "123"); class Base { const DUMMY = "XXX"; public function foo($var=TEST, $more=null) { return true; } - public function bar($var, $more=self::DUMMY) { return true; } + public function bar($more=self::DUMMY) { return true; } } class Child extends Base { const DUMMY = "DDD"; - public function foo($var=TEST) { return true; } - public function bar() { return true; } + public function foo($var=TEST, array $more = array()) { return true; } + public function bar($var, $more=self::DUMMY) { return true; } } ?> --EXPECT-- |