From d5b243331654de909783b8a01a5bf71e073cbadd Mon Sep 17 00:00:00 2001 From: Alex Harpin Date: Sat, 17 Jul 2021 11:27:43 +0100 Subject: [PATCH] Update current_page_position property docblock Update the current_page_position property docblock for the Paginator class; this property should be an int. --- lib/Core/Paginator.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Core/Paginator.php b/lib/Core/Paginator.php index c1420e4a..b1db0253 100644 --- a/lib/Core/Paginator.php +++ b/lib/Core/Paginator.php @@ -30,7 +30,7 @@ class Paginator implements \Iterator private $current_position; /** - * @var array Keep track of the index of the first record on the current page. Allows for relative indexing into the page. + * @var int Keep track of the index of the first record on the current page. Allows for relative indexing into the page. */ private $current_page_position;