Completed
Pull Request — master (#5)
by Jean-Baptiste
05:34
created
src/Version/Guzzle6.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/Mock/Guzzle6Mock.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,6 +23,6 @@
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
src/Version/Guzzle5.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@
 block discarded – undo
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()));
Please login to merge, or discard this patch.
src/GuzzleFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.