<?php class A { } class B extends A { } interface AI { public function test(B $a); } class Run implements AI { public function test(A $b) { return; } }
You have javascript disabled. You will not be able to edit any code.