. */ namespace SP\Services\Account; use SP\Core\Exceptions\SPException; use SP\DataModel\Dto\AccountDetailsResponse; /** * Interface AccountServiceInterface * * @package SP\Services\Account */ interface AccountServiceInterface { /** * @param int $id * * @return AccountDetailsResponse * @throws SPException */ public function getById($id); }