can we add a way to add methods from a class that is not extended example ``` /** * @inhert-methods Parent */ class Child { protected $parent; public function __class($name, $arguments) { return call_user_func_array([$this->parent, $name], $arguments); } } ```