@@ -77,7 +77,7 @@ |
||
| 77 | 77 | * Add a query parameter to filter results. |
| 78 | 78 | * |
| 79 | 79 | */ |
| 80 | - public function addQuery(string $name, int|string $value): void; |
|
| 80 | + public function addQuery(string $name, int | string $value): void; |
|
| 81 | 81 | |
| 82 | 82 | /** |
| 83 | 83 | * Get options from Client. |
@@ -34,7 +34,7 @@ |
||
| 34 | 34 | * |
| 35 | 35 | * |
| 36 | 36 | */ |
| 37 | - public function switch(string $environmentUuid, string $branch): OperationResponse |
|
| 37 | + public function switch (string $environmentUuid, string $branch): OperationResponse |
|
| 38 | 38 | { |
| 39 | 39 | |
| 40 | 40 | $options = [ |
@@ -30,7 +30,7 @@ discard block |
||
| 30 | 30 | */ |
| 31 | 31 | public function __toString(): string |
| 32 | 32 | { |
| 33 | - return __CLASS__ . ": [{$this->errorType}]: {$this->message}\n"; |
|
| 33 | + return __CLASS__.": [{$this->errorType}]: {$this->message}\n"; |
|
| 34 | 34 | } |
| 35 | 35 | |
| 36 | 36 | /** |
@@ -42,7 +42,7 @@ discard block |
||
| 42 | 42 | if (is_array($response_body->message) || is_object($response_body->message)) { |
| 43 | 43 | $output = ''; |
| 44 | 44 | foreach ($response_body->message as $message) { |
| 45 | - $output .= $message . PHP_EOL; |
|
| 45 | + $output .= $message.PHP_EOL; |
|
| 46 | 46 | } |
| 47 | 47 | $this->message = $output; |
| 48 | 48 | } else { |