mirror of
https://github.com/appwrite/appwrite
synced 2026-05-22 00:18:25 +00:00
Linter fix
This commit is contained in:
parent
cdc44230cf
commit
ce59bcce7a
1 changed files with 2 additions and 2 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue