@@ -90,7 +90,7 @@ discard block |
||
90 | 90 | * @param string $mode |
91 | 91 | * @param array $clientOptions |
92 | 92 | */ |
93 | - public function __construct(AccessToken $accessToken, $mode = 'production', array $clientOptions = []) |
|
93 | + public function __construct(AccessToken $accessToken, $mode = 'production', array $clientOptions = [ ]) |
|
94 | 94 | { |
95 | 95 | $this->accessToken = $accessToken; |
96 | 96 | $this->mode = $mode; |
@@ -125,7 +125,7 @@ discard block |
||
125 | 125 | { |
126 | 126 | $options = [ |
127 | 127 | 'headers' => [ |
128 | - 'Authorization' => 'Bearer ' . $this->accessToken->getToken(), |
|
128 | + 'Authorization' => 'Bearer '.$this->accessToken->getToken(), |
|
129 | 129 | ] |
130 | 130 | ]; |
131 | 131 | |
@@ -157,7 +157,7 @@ discard block |
||
157 | 157 | */ |
158 | 158 | public function post($endpoint, $json) |
159 | 159 | { |
160 | - $response = $this->httpClient->request('POST', $this->buildBaseUrl().$endpoint, ['json' => $json]); |
|
160 | + $response = $this->httpClient->request('POST', $this->buildBaseUrl().$endpoint, [ 'json' => $json ]); |
|
161 | 161 | return $this->handleResponse($response); |
162 | 162 | } |
163 | 163 | |
@@ -169,7 +169,7 @@ discard block |
||
169 | 169 | */ |
170 | 170 | public function patch($endpoint, $json) |
171 | 171 | { |
172 | - $response = $this->httpClient->request('PATCH', $this->buildBaseUrl().$endpoint, ['json' => $json]); |
|
172 | + $response = $this->httpClient->request('PATCH', $this->buildBaseUrl().$endpoint, [ 'json' => $json ]); |
|
173 | 173 | return $this->handleResponse($response); |
174 | 174 | } |
175 | 175 |