Your IP : 216.73.216.48


Current Path : /hdd/hdd21/main/php/php-7.3.8/tests/classes/
Upload File :
Current File : //hdd/hdd21/main/php/php-7.3.8/tests/classes/inheritance_003.phpt

--TEST--
ZE2 method inheritance without interfaces
--FILE--
<?php

class A
{
	function f($x) {}
}

class B extends A
{
	function f() {}
}

?>
===DONE===
--EXPECTF--
Warning: Declaration of B::f() should be compatible with A::f($x) in %sinheritance_003.php on line %d
===DONE===