mirror of
https://github.com/php/php-src.git
synced 2024-12-14 04:16:30 +08:00
440481fb3e
We currently don't show the argument at which the error actually occured in the trace - should probably either add it or don't display args on incomplete frames altogether, otherwise this'll probably be confusing.
38 lines
600 B
PHP
38 lines
600 B
PHP
--TEST--
|
|
Testing parameter type-hinted with interface
|
|
--FILE--
|
|
<?php
|
|
|
|
namespace foo;
|
|
|
|
interface foo {
|
|
|
|
}
|
|
|
|
class bar {
|
|
public function __construct(foo $x = NULL) {
|
|
var_dump($x);
|
|
}
|
|
}
|
|
|
|
class test implements foo {
|
|
|
|
}
|
|
|
|
|
|
new bar(new test);
|
|
new bar(null);
|
|
new bar(new \stdclass);
|
|
|
|
?>
|
|
--EXPECTF--
|
|
object(foo\test)#%d (0) {
|
|
}
|
|
NULL
|
|
|
|
Fatal error: Uncaught TypeException: 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:%d
|
|
Stack trace:
|
|
#0 %s(%d): foo\bar->__construct()
|
|
#1 {main}
|
|
thrown in %s on line %d
|