ns_070.phpt 293 B

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