php-src/tests/classes/interfaces_003.phpt

27 lines
440 B
Plaintext
Raw Normal View History

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