<?php interface Foo { public function test(array $x, $y=0); } interface Bar { public function test(array $x, $y); } interface Baz extends Foo, Bar {} //however, this will fail with expected fatal error: //interface Baz extends Bar, Foo {}
You have javascript disabled. You will not be able to edit any code.