<?php class Base { protected function foo() {} } class Other extends Base { protected function foo() { echo "OK"; } } class Child extends Base { public function bar() { $otherBase = new Other(); $otherBase->foo(); } } $child = new Child(); $child->bar();
You have javascript disabled. You will not be able to edit any code.