@@ -30,7 +30,7 @@ |
||
30 | 30 | { |
31 | 31 | |
32 | 32 | $client = new Client(array_merge( |
33 | - ['base_uri' => $this->getBaseUri()], |
|
33 | + [ 'base_uri' => $this->getBaseUri() ], |
|
34 | 34 | $options |
35 | 35 | )); |
36 | 36 |
@@ -23,6 +23,6 @@ |
||
23 | 23 | $mock = new MockHandler($responseCollection); |
24 | 24 | $handler = HandlerStack::create($mock); |
25 | 25 | |
26 | - return GuzzleFactory::createGuzzle('', ['handler' => $handler]); |
|
26 | + return GuzzleFactory::createGuzzle('', [ 'handler' => $handler ]); |
|
27 | 27 | } |
28 | 28 | } |
@@ -69,7 +69,7 @@ |
||
69 | 69 | $guzzleRequest = $this->client->createRequest( |
70 | 70 | $request->getMethod(), |
71 | 71 | $request->getUri(), |
72 | - ['headers' => $request->getHeaders()] |
|
72 | + [ 'headers' => $request->getHeaders() ] |
|
73 | 73 | ); |
74 | 74 | |
75 | 75 | $guzzleRequest->setBody(Stream::factory($request->getBody())); |
@@ -13,7 +13,7 @@ |
||
13 | 13 | * |
14 | 14 | * @throws NotSupportedException when Guzzle vendor version is not supported. |
15 | 15 | */ |
16 | - public static function createGuzzle($baseUri, $options = []) |
|
16 | + public static function createGuzzle($baseUri, $options = [ ]) |
|
17 | 17 | { |
18 | 18 | $guzzleVersion = self::detectGuzzleVersion(); |
19 | 19 |