mirror of
https://github.com/php/php-src.git
synced 2024-12-02 22:34:55 +08:00
17 lines
542 B
PHP
17 lines
542 B
PHP
--TEST--
|
|
Bug #55719 (Argument restriction should come with a more specific error message)
|
|
--FILE--
|
|
<?php
|
|
Abstract Class Base {
|
|
public function test($foo, array &$bar, $option = NULL, $extra = 3.141592653589793238462643383279502884197169399375105 ) {
|
|
}
|
|
}
|
|
|
|
class Sub extends Base {
|
|
public function test($foo, array &$bar) {
|
|
}
|
|
}
|
|
?>
|
|
--EXPECTF--
|
|
Warning: Declaration of Sub::test($foo, array &$bar) should be compatible with Base::test($foo, array &$bar, $option = NULL, $extra = 3.1415926535898) in %sargument_restriction_002.php on line %d
|