From d934b71b6289e2788dae627841763ea65811d148 Mon Sep 17 00:00:00 2001 From: Thomas Maltby Date: Wed, 23 Jul 2025 13:15:26 +0700 Subject: [PATCH] Fix: Change perPage from string to int in Paginate scope --- queries.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/queries.md b/queries.md index 1e1096186e..43d983d135 100644 --- a/queries.md +++ b/queries.md @@ -1638,7 +1638,7 @@ class Paginate public function __construct( private string $sortBy = 'timestamp', private string $sortDirection = 'desc', - private string $perPage = 25, + private int $perPage = 25, ) { // }