Skip to content

Commit

Permalink
Increase default value
Browse files Browse the repository at this point in the history
  • Loading branch information
kyle-elios committed Jul 17, 2024
1 parent cb57aea commit 834733e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Concerns/Users.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ trait Users
{
public function getUsers(
?int $companyId = null,
int $perPage = 30,
int $perPage = 100,
int $page = 1
): Response {
return $this->get('users/minimal', [
Expand Down
2 changes: 1 addition & 1 deletion src/Facades/RepCard.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
* @method static \Illuminate\Http\Client\Response getLeaderboards(\DateTimeInterface|string|null $from = null, \DateTimeInterface|string|null $to = null)
* @method static \Illuminate\Http\Client\Response getOffices(string|null $search = null)
* @method static \Illuminate\Http\Client\Response getOfficeTeams(int $officeId)
* @method static \Illuminate\Http\Client\Response getUsers(int|null $companyId = null, int $perPage = 30, int $page = 1)
* @method static \Illuminate\Http\Client\Response getUsers(int|null $companyId = null, int $perPage = 100, int $page = 1)
* @method static \Illuminate\Http\Client\Response getUser(int $userId)
* @method static \Illuminate\Http\Client\Response getEventUser(int $userId)
* @method static \Illuminate\Http\Client\Response createUser(\RepCard\Http\Requests\UserRequest $request)
Expand Down
2 changes: 1 addition & 1 deletion tests/Facades/RepCardTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ public function test_get_users(): void

RepCard::fake('/users/minimal', $query = [
'company_id' => $companyId,
'per_page' => 30,
'per_page' => 100,
'page' => 1,
]);

Expand Down

0 comments on commit 834733e

Please sign in to comment.