@@ -32,11 +32,11 @@ discard block |
||
32 | 32 | $this->apiKey = $apiKey; |
33 | 33 | } |
34 | 34 | |
35 | - public function get(string $uri, array $params = []): array |
|
35 | + public function get(string $uri, array $params = [ ]): array |
|
36 | 36 | { |
37 | 37 | $response = $this->http->get( |
38 | 38 | $this->endpoint($uri, $params), |
39 | - ['X-Api-Key' => $this->apiKey] |
|
39 | + [ 'X-Api-Key' => $this->apiKey ] |
|
40 | 40 | ); |
41 | 41 | |
42 | 42 | if (200 !== $response->getStatusCode()) { |
@@ -75,7 +75,7 @@ discard block |
||
75 | 75 | json_encode($data) |
76 | 76 | ); |
77 | 77 | |
78 | - if (!in_array($response->getStatusCode(), [200, 201], true)) { |
|
78 | + if (!in_array($response->getStatusCode(), [ 200, 201 ], true)) { |
|
79 | 79 | throw $this->createExceptionFromResponse($response); |
80 | 80 | } |
81 | 81 | |
@@ -93,7 +93,7 @@ discard block |
||
93 | 93 | json_encode($data) |
94 | 94 | ); |
95 | 95 | |
96 | - if (!in_array($response->getStatusCode(), [200, 204], true)) { |
|
96 | + if (!in_array($response->getStatusCode(), [ 200, 204 ], true)) { |
|
97 | 97 | throw $this->createExceptionFromResponse($response); |
98 | 98 | } |
99 | 99 | |
@@ -111,7 +111,7 @@ discard block |
||
111 | 111 | } |
112 | 112 | } |
113 | 113 | |
114 | - private function endpoint(string $uri, array $params = []): string |
|
114 | + private function endpoint(string $uri, array $params = [ ]): string |
|
115 | 115 | { |
116 | 116 | $endpoint = sprintf( |
117 | 117 | '%s/%s', |