mirror of
https://github.com/php/php-src.git
synced 2025-08-20 09:24:05 +02:00
- Fixed tests (thanks Timm)
This commit is contained in:
parent
dc07057b06
commit
4680f6ab3d
2 changed files with 3 additions and 3 deletions
|
@ -18,4 +18,4 @@ new bar(new stdclass);
|
|||
--EXPECTF--
|
||||
NULL
|
||||
|
||||
Catchable fatal error: Argument 1 passed to foo::bar::__construct() must be an array, object given, called in %s on line %d and defined in %s on line %d
|
||||
Catchable fatal error: Argument 1 passed to foo\bar::__construct() must be an array, object given, called in %s on line %d and defined in %s on line %d
|
||||
|
|
|
@ -26,8 +26,8 @@ new bar(new stdclass);
|
|||
|
||||
?>
|
||||
--EXPECTF--
|
||||
object(foo::test)#%d (0) {
|
||||
object(foo\test)#%d (0) {
|
||||
}
|
||||
NULL
|
||||
|
||||
Catchable fatal error: Argument 1 passed to foo::bar::__construct() must implement interface foo::foo, instance of stdClass given, called in %s on line %d and defined in %s on line %d
|
||||
Catchable fatal error: Argument 1 passed to foo\bar::__construct() must implement interface foo\foo, instance of stdClass given, called in %s on line %d and defined in %s on line %d
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue