@@ -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 |
@@ -30,7 +30,7 @@ |
||
30 | 30 | $response = $this->toString(); |
31 | 31 | $data = json_decode($response, true); |
32 | 32 | |
33 | - if (! $data) { |
|
33 | + if (!$data) { |
|
34 | 34 | throw new ResponseNotParsedException( |
35 | 35 | 'Service response could not be parsed to JSON, Response: ' . |
36 | 36 | $response . ', Reason: ' . json_last_error() |