From ce59bcce7af718904ef377f23854dd152e6ffb41 Mon Sep 17 00:00:00 2001 From: Matej Baco Date: Wed, 8 Jun 2022 09:10:44 +0200 Subject: [PATCH] Linter fix --- src/Executor/Executor.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Executor/Executor.php b/src/Executor/Executor.php index 2762a1d7f..416d47ab8 100644 --- a/src/Executor/Executor.php +++ b/src/Executor/Executor.php @@ -187,7 +187,7 @@ class Executor $response = $this->call(self::METHOD_POST, $route, $headers, $params, true, $requestTimeout); $status = $response['headers']['status-code']; - if($status < 400) { + if ($status < 400) { return $response['body']; } break; @@ -195,7 +195,7 @@ class Executor $response = $this->call(self::METHOD_POST, $route, $headers, $params, true, $requestTimeout); $status = $response['headers']['status-code']; - if($status < 400) { + if ($status < 400) { return $response['body']; } break;