mirror of
https://github.com/php/php-src.git
synced 2024-12-15 04:45:03 +08:00
17 lines
511 B
Plaintext
17 lines
511 B
Plaintext
|
--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--
|
||
|
Strict Standards: Declaration of Sub::test() should be compatible with & Base::test($foo, array $bar, $option = NULL, $extra = 'llllllllll...') in %sargument_restriction_001.php on line %d
|