mirror of
https://github.com/php/php-src.git
synced 2024-12-19 15:00:15 +08:00
20 lines
527 B
PHP
20 lines
527 B
PHP
--TEST--
|
|
Bug #55719 (Argument restriction should come with a more specific error message)
|
|
--FILE--
|
|
<?php
|
|
class Foo {
|
|
}
|
|
|
|
Abstract Class Base {
|
|
public function test(Foo $foo, array $bar, $option = NULL, $extra = "lllllllllllllllllllllllllllllllllllllllllllllllllll") {
|
|
}
|
|
}
|
|
|
|
class Sub extends Base {
|
|
public function test() {
|
|
}
|
|
}
|
|
?>
|
|
--EXPECTF--
|
|
Warning: Declaration of Sub::test() should be compatible with Base::test(Foo $foo, array $bar, $option = NULL, $extra = 'llllllllll...') in %sargument_restriction_003.php on line %d
|