1
0
Fork 0
mirror of synced 2024-05-20 04:32:37 +12:00

Linter fix

This commit is contained in:
Matej Baco 2022-06-08 09:10:44 +02:00
parent cdc44230cf
commit ce59bcce7a

View file

@ -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;