php-src/Zend/tests/constructor_args.phpt

21 lines
356 B
Plaintext
Raw Normal View History

--TEST--
Different numbers of arguments in __construct()
--FILE--
<?php
interface foobar {
function __construct();
}
abstract class bar implements foobar {
public function __construct($x = 1) {
}
}
final class foo extends bar implements foobar {
public function __construct($x = 1, $y = 2) {
}
}
new foo;
print "ok!";
?>
--EXPECT--
ok!