<?php class B { protected static function c() { return 1; } } class C1 extends B { function f(B $x) { return $x::c(); } } class C2 extends B { protected static function c() { return 2; } } var_dump((new C1)->f(new C2));
You have javascript disabled. You will not be able to edit any code.