mirror of
https://github.com/php/php-src.git
synced 2024-11-23 18:04:36 +08:00
fe9860c2b0
Closes GH-5361
17 lines
384 B
PHP
17 lines
384 B
PHP
--TEST--
|
|
Bug #60174 (Notice when array in method prototype error)
|
|
--FILE--
|
|
<?php
|
|
Abstract Class Base {
|
|
public function test($foo, $extra = array("test")) {
|
|
}
|
|
}
|
|
|
|
class Sub extends Base {
|
|
public function test($foo, $extra) {
|
|
}
|
|
}
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Declaration of Sub::test($foo, $extra) must be compatible with Base::test($foo, $extra = [...]) in %s on line %d
|