/** * funkce vrati info o autorovi * @param int $author_id * @return object */ public function authorInfo($author_id) { try { return Authors::authorInfo($author_id); } catch (Exception $e) { throw new RPCFault($e->getMessage(), $e->getCode(), $e->getCode()); } }