argument_restriction_006.phpt 384 B

12345678910111213141516
  1. --TEST--
  2. Bug #60174 (Notice when array in method prototype error)
  3. --FILE--
  4. <?php
  5. Abstract Class Base {
  6. public function test($foo, $extra = array("test")) {
  7. }
  8. }
  9. class Sub extends Base {
  10. public function test($foo, $extra) {
  11. }
  12. }
  13. ?>
  14. --EXPECTF--
  15. Fatal error: Declaration of Sub::test($foo, $extra) must be compatible with Base::test($foo, $extra = [...]) in %s on line %d