|
|
1.1 misho 1: --TEST--
2: Testing parameter type-hinted with default value inside namespace
3: --FILE--
4: <?php
5:
6: namespace foo;
7:
8: class bar {
9: public function __construct(\stdclass $x = NULL) {
10: var_dump($x);
11: }
12: }
13:
14: new bar(new \stdclass);
15: new bar(null);
16:
17: ?>
18: --EXPECTF--
19: object(stdClass)#%d (0) {
20: }
21: NULL