*/ interface PagingProvider { /** * Returns the `$paging->next` URL. */ public function getNextUrl(): ?string; /** * Returns the `$paging->prev` URL. */ public function getPreviousUrl(): ?string; /** * Returns the `$paging->first` URL. */ public function getFirstUrl(): ?string; /** * Returns the `$paging->last` URL. */ public function getLastUrl(): ?string; }