Skip to content

Commit

Permalink
ci: ran php-cs-fixer fix
Browse files Browse the repository at this point in the history
  • Loading branch information
carlalexander committed Sep 23, 2024
1 parent 3b0d376 commit c51daff
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -644,10 +644,10 @@ public function getEnvironment(int $projectId, string $environment): Collection
public function getEnvironmentLogs(int $projectId, string $environment, string $function, int $since, ?string $order = null): Collection
{
return $this->request('get', "/projects/{$projectId}/environments/{$environment}/logs?".http_build_query([
'function' => $function,
'since' => $since,
'order' => $order,
]));
'function' => $function,
'since' => $since,
'order' => $order,
]));
}

/**
Expand Down

0 comments on commit c51daff

Please sign in to comment.