summaryrefslogtreecommitdiff
path: root/Zend/tests/ns_072.phpt
blob: b41fe29778faac870a5ddb4450c8679a353b42a6 (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: foo\bar::__construct(): Argument #1 ($x) must be of type ?foo\foo, stdClass given, called in %s:%d
Stack trace:
#0 %s(%d): foo\bar->__construct(Object(stdClass))
#1 {main}
  thrown in %s on line %d