php-src/tests/classes/inheritance_004.phpt

19 lines
260 B
Plaintext
Raw Permalink Normal View History

2006-05-30 23:11:13 +00:00
--TEST--
ZE2 method inheritance without interfaces
--FILE--
<?php
class A
{
function f() {}
2006-05-30 23:11:13 +00:00
}
class B extends A
{
2020-02-03 21:52:20 +00:00
function f($x) {}
2006-05-30 23:11:13 +00:00
}
?>
--EXPECTF--
Fatal error: Declaration of B::f($x) must be compatible with A::f() in %sinheritance_004.php on line %d