/** * funkce vylistuje autory * @param int $distributor_id optional * @return array */ public function authorsList($distributor_id = null) { try { return Authors::authorsList($distributor_id); } catch (Exception $e) { throw new RPCFault($e->getMessage(), $e->getCode(), $e->getCode()); } }