Exemplo n.º 1
0
 /**
  * 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());
     }
 }