1
0
mirror of https://github.com/php/php-src.git synced 2026-03-26 17:22:15 +01:00
Files
archived-php-src/tests/classes/interfaces_003.phpt
Marcus Boerger 6eaf1671b5 - Add new test
2005-10-06 18:34:16 +00:00

34 lines
483 B
PHP
Executable File

--TEST--
ZE2 interface and __construct
--FILE--
<?php
class MyObject {}
interface MyInterface
{
public function __construct(Object $o);
}
class MyTestClass implements MyInterface
{
public function __construct(Object $o)
{
}
}
$obj = new MyTestClass;
class MyTestFail
{
public function __construct()
{
}
}
?>
===DONE===
--EXPECTF--
Fatal error: Argument 1 passed to MyTestClass::__construct() must be an object of class Object, called in %sinterfaces_003.php on line %d