mirror of
https://github.com/php/php-src.git
synced 2025-01-23 20:23:31 +08:00
Test for #60174 (Notice when array in method prototype error)
This commit is contained in:
parent
5921e73a37
commit
378ad2f447
16
Zend/tests/argument_restriction_006.phpt
Normal file
16
Zend/tests/argument_restriction_006.phpt
Normal file
@ -0,0 +1,16 @@
|
||||
--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--
|
||||
Strict Standards: Declaration of Sub::test() should be compatible with Base::test($foo, $extra = Array) in %sargument_restriction_006.php on line %d
|
Loading…
Reference in New Issue
Block a user