<?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();