php-src/tests/classes/interfaces_003.phpt

27 lines
448 B
Plaintext
Raw Normal View History

2005-10-06 18:34:16 +00:00
--TEST--
ZE2 interface and __construct
--FILE--
<?php
class MyObject {}
interface MyInterface
{
2006-05-10 21:19:37 +00:00
public function __construct(MyObject $o);
2005-10-06 18:34:16 +00:00
}
class MyTestClass implements MyInterface
{
2006-05-10 21:19:37 +00:00
public function __construct(MyObject $o)
2005-10-06 18:34:16 +00:00
{
}
}
$obj = new MyTestClass;
?>
===DONE===
--EXPECTF--
Catchable fatal error: Argument 1 passed to MyTestClass::__construct() must be an instance of MyObject, none given, called in %sinterfaces_003.php on line %d