mirror of
https://github.com/php/php-src.git
synced 2024-11-23 18:04:36 +08:00
fe9860c2b0
Closes GH-5361
17 lines
487 B
PHP
17 lines
487 B
PHP
--TEST--
|
|
Bug #55719 (Argument restriction should come with a more specific error message)
|
|
--FILE--
|
|
<?php
|
|
Class Base {
|
|
public function &test($foo, array $bar, $option = NULL, $extra = "lllllllllllllllllllllllllllllllllllllllllllllllllll") {
|
|
}
|
|
}
|
|
|
|
class Sub extends Base {
|
|
public function &test() {
|
|
}
|
|
}
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Declaration of & Sub::test() must be compatible with & Base::test($foo, array $bar, $option = null, $extra = 'llllllllll...') in %s on line %d
|