| Current Path : /hdd/hdd21/main/php/php-7.3.8/tests/classes/ |
| Current File : //hdd/hdd21/main/php/php-7.3.8/tests/classes/inheritance_004.phpt |
--TEST--
ZE2 method inheritance without interfaces
--FILE--
<?php
class A
{
function f() {}
}
class B extends A
{
function f($x) {}
}
?>
===DONE===
--EXPECTF--
Warning: Declaration of B::f($x) should be compatible with A::f() in %sinheritance_004.php on line %d
===DONE===