``` php class SomeParent { public function test(){} protected function testProtected(){} private function testPrivate(){} } class SomeChild extends SomeParent { public function test() { parent:: } } ``` should return `test` and `testProtected`