/** * funkce updatne autora * @param int $author_id * @param object $data * @return bool */ public function updateAuthor($author_id, $data) { try { return Authors::updateAuthor($author_id, $data); } catch (Exception $e) { throw new RPCFault($e->getMessage(), $e->getCode(), $e->getCode()); } }