From c2d80d156dcf78ee4c155a1740dda6631a96cb12 Mon Sep 17 00:00:00 2001 From: Michael Mussulis Date: Mon, 20 May 2024 09:43:00 -0400 Subject: [PATCH] Fixed phpcs error --- Client.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Client.php b/Client.php index ab72663..3fd07d7 100755 --- a/Client.php +++ b/Client.php @@ -1152,8 +1152,7 @@ public function __call($name, $args) if ($this->isMulti) { $execResponse = array_pop($response); - if(!empty($execResponse)) - { + if(!empty($execResponse)) { foreach ($queuedResponses as $key => $command) { list($name, $arguments) = $command; $response[] = $this->decode_reply($name, $execResponse[$key], $arguments);