mirror of
https://github.com/php/php-src.git
synced 2024-11-25 19:05:31 +08:00
1b4134c07b
[DOC] new resolution rules should be documented soon
34 lines
511 B
PHP
34 lines
511 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
|
|
|
|
Catchable fatal error: 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 on line %d
|