From 45fb6234e72cccbf8483bd672e7aa296e0b5aad4 Mon Sep 17 00:00:00 2001 From: happymintyo Date: Mon, 3 May 2021 18:41:32 +0200 Subject: [PATCH] Correct getNextPage method description --- src/Pagination/PageInterface.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Pagination/PageInterface.php b/src/Pagination/PageInterface.php index 66d24016..acf2717c 100644 --- a/src/Pagination/PageInterface.php +++ b/src/Pagination/PageInterface.php @@ -22,7 +22,7 @@ public function getFirstPage(): PageInterface; public function getPreviousPage(): ?PageInterface; /** - * Returns the previous page of the list of resources if it exists, null otherwise. + * Returns the next page of the list of resources if it exists, null otherwise. */ public function getNextPage(): ?PageInterface;