$method(); } else { return $this->default_method(); } } public function some_method() { echo 'Some method!'; } public function default_method() { echo 'Default method!'; } }