![]() ![]() | ![]() |
1.1 misho 1: --TEST-- 2: Using the same function name on interface with inheritance 3: --FILE-- 4: <?php 5: 6: interface Itest { 7: function a(); 8: } 9: 10: interface Itest2 { 11: function a(); 12: } 13: 14: interface Itest3 extends Itest, Itest2 { 15: } 16: 17: echo "done!\n"; 18: 19: ?> 20: --EXPECTF-- 21: done!