Completed
Push — master ( c04b81...6d3173 )
by Guillermo A.
02:08
created
src/Resources/AbstractResource.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
         $this->setAdapter($adapter);
29 29
         if (!$this->name) {
30 30
             $this->name = strtolower(
31
-                str_replace(__NAMESPACE__ . '\\', '', get_class($this))
31
+                str_replace(__NAMESPACE__.'\\', '', get_class($this))
32 32
             );
33 33
         }
34 34
     }
Please login to merge, or discard this patch.
src/Http/GuzzleAdapter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
             unset($options['body']);
36 36
         }
37 37
         if (isset($options['query'])) {
38
-            $uri .= '?' . http_build_query($options['query']);
38
+            $uri .= '?'.http_build_query($options['query']);
39 39
             unset($options['body']);
40 40
         }
41 41
         $this->lastRequest = new Request($method, $uri, $headers, $body);
Please login to merge, or discard this patch.