Skip to content

Commit bba3e74

Browse files
authored
Fix: Change perPage from string to int in Paginate scope (#10636)
1 parent 33c3fe1 commit bba3e74

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

queries.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1638,7 +1638,7 @@ class Paginate
16381638
public function __construct(
16391639
private string $sortBy = 'timestamp',
16401640
private string $sortDirection = 'desc',
1641-
private string $perPage = 25,
1641+
private int $perPage = 25,
16421642
) {
16431643
//
16441644
}

0 commit comments

Comments
 (0)