blob: 932a38b3bae5d34986f8d1e2b5ce0f55f87f766c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
--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 TypeError: Argument 1 passed to foo\bar::__construct() must implement interface foo\foo or be null, instance of stdClass given, called in %s on line %d and defined in %s:%d
Stack trace:
#0 %s(%d): foo\bar->__construct(Object(stdClass))
#1 {main}
thrown in %s on line %d
|