Skip to content

Commit d9bcdde

Browse files
authored
Fix missing )
1 parent dea4d2d commit d9bcdde

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Traits/Helpers/PaginationHelpers.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ public function getPerPage(): int
7474

7575
public function getDefaultPerPage(): int
7676
{
77-
return (in_array((int) $this->defaultPerPage, $this->getPerPageAccepted()) ? $this->defaultPerPage : ($this->getPerPageAccepted()[0] ?? 10);
77+
return (in_array((int) $this->defaultPerPage, $this->getPerPageAccepted()) ? $this->defaultPerPage : ($this->getPerPageAccepted()[0] ?? 10));
7878
}
7979

8080
/**

0 commit comments

Comments
 (0)