1234567891011121314151617181920 |
- --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===
|