php-src/Zend/tests/bug39003.phpt

28 lines
571 B
Plaintext
Raw Normal View History

--TEST--
Bug #39003 (__autoload() is called for type hinting)
--FILE--
<?php
class ClassName
{
public $var = 'bla';
}
function test (OtherClassName $object) { }
2017-01-30 21:28:17 +00:00
spl_autoload_register(function ($class) {
var_dump("__autload($class)");
2017-01-30 21:28:17 +00:00
});
$obj = new ClassName;
test($obj);
echo "Done\n";
?>
--EXPECTF--
Fatal error: Uncaught TypeError: Argument 1 passed to test() must be an instance of OtherClassName, instance of ClassName given, called in %s on line %d and defined in %s:%d
Stack trace:
#0 %s(%d): test(Object(ClassName))
#1 {main}
thrown in %s on line %d