<?php interface I1 { public static function foo($bar); } interface I2 { public static function foo($bar); } class A implements I1, I2 { // which interface should be inherited here? public static function foo($bar) {} } var_dump((new ReflectionMethod('A::foo'))->getPrototype());
You have javascript disabled. You will not be able to edit any code.