Patch argument_restriction_002.phpt for Unknown/Other Function Bug #55719
Patch version 2011-09-18 15:32 UTC
Return to Bug #55719
| Download this patch
Patch Revisions:
2011-09-18 15:32 UTC | 2011-09-18 15:32 UTC | 2011-09-18 14:55 UTCDeveloper: laruence@php.net
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 = "lllllllllllllllllllllllllllllllllllllllllllllllllll") {
public function test($foo, array &$bar, $option = NULL, $extra = "lllllllllllllllllllllllllllllllllllllllllllllllllll") {
}
}
class Sub extends Base {
}
}
?>
--EXPECTF--
Strict Standards: Declaration of Sub::test() should be compatible with Base::test($foo, array $bar, $option = NULL, $extra = 'llllllllll...') in %sargument_restriction_002.php on line %d
Strict Standards: Declaration of Sub::test() should be compatible with Base::test($foo, array &$bar, $option = NULL, $extra = 'llllllllll...') in %sargument_restriction_002.php on line %d
|