diff --git a/src/Mailgun/Api/Event.php b/src/Mailgun/Api/Event.php index 115562a..d49d4e7 100644 --- a/src/Mailgun/Api/Event.php +++ b/src/Mailgun/Api/Event.php @@ -35,44 +35,4 @@ class Event extends HttpApi return $this->hydrateResponse($response, EventResponse::class); } - - /** - * @param EventResponse $eventResponse - * - * @return EventResponse|null - */ - public function getPaginationNext(EventResponse $eventResponse) - { - return $this->getPaginationUrl($eventResponse->getNextUrl(), EventResponse::class); - } - - /** - * @param EventResponse $eventResponse - * - * @return EventResponse|null - */ - public function getPaginationPrevious(EventResponse $eventResponse) - { - return $this->getPaginationUrl($eventResponse->getPreviousUrl(), EventResponse::class); - } - - /** - * @param EventResponse $eventResponse - * - * @return EventResponse|null - */ - public function getPaginationFirst(EventResponse $eventResponse) - { - return $this->getPaginationUrl($eventResponse->getPreviousUrl(), EventResponse::class); - } - - /** - * @param EventResponse $eventResponse - * - * @return EventResponse|null - */ - public function getPaginationLast(EventResponse $eventResponse) - { - return $this->getPaginationUrl($eventResponse->getPreviousUrl(), EventResponse::class); - } }