<?php class Foo { protected function get() { return 'foo'; } } class Bar extends Foo { public function get() { return 'bar'; } } var_dump((new Bar)->get());
You have javascript disabled. You will not be able to edit any code.