From a564aa85fa4e5eb5ffcc9cc7f613d16945ff8ce1 Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Thu, 14 Feb 2019 02:38:22 +0000 Subject: [PATCH] Move parenthesis --- src/Command/PickWinnerCommand.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Command/PickWinnerCommand.php b/src/Command/PickWinnerCommand.php index b35ec7d..f59f81f 100644 --- a/src/Command/PickWinnerCommand.php +++ b/src/Command/PickWinnerCommand.php @@ -129,8 +129,8 @@ class PickWinnerCommand extends Command // TODO: Cache this. $response = $this->client->get( $event->comments_uri, - ['query' => ['resultsperpage' => 1000]]) - ->getBody(); + ['query' => ['resultsperpage' => 1000]] + )->getBody(); return collect(json_decode($response)->comments); }