@@ -24,7 +24,7 @@ |
||
| 24 | 24 | try { |
| 25 | 25 | $response = $this->client->request($request->getMethod(), $request->getUri(), $request->options()); |
| 26 | 26 | } catch (RequestException $exception) { |
| 27 | - if (! $exception->hasResponse()) { |
|
| 27 | + if (!$exception->hasResponse()) { |
|
| 28 | 28 | throw HttpClientException::fromThrowable($exception); |
| 29 | 29 | } |
| 30 | 30 | |
@@ -35,7 +35,7 @@ |
||
| 35 | 35 | $response = $this->toString(); |
| 36 | 36 | $data = json_decode($response, true); |
| 37 | 37 | |
| 38 | - if (! $data) { |
|
| 38 | + if (!$data) { |
|
| 39 | 39 | throw new ImpossibleToParseJsonException( |
| 40 | 40 | 'Service response could not be parsed to JSON, Response: ' . |
| 41 | 41 | $response . ', Reason: ' . json_last_error() |