From c51daff7c571aac38446a4459b33a367c821d5e5 Mon Sep 17 00:00:00 2001 From: Carl Alexander Date: Mon, 23 Sep 2024 12:32:34 -0400 Subject: [PATCH] ci: ran `php-cs-fixer fix` --- src/Client.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Client.php b/src/Client.php index 946738f..ca7a407 100644 --- a/src/Client.php +++ b/src/Client.php @@ -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, + ])); } /**