Completed
Push — master ( 776a32...6c75fc )
by Guillermo A.
07:11
created
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.
src/Repositories/AbstractRepository.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
         $this->setAdapter($adapter);
41 41
         if (!$this->name) {
42 42
             $this->name = strtolower(
43
-                str_replace([__NAMESPACE__ . '\\', 'Repository'], '', get_class($this))
43
+                str_replace([__NAMESPACE__.'\\', 'Repository'], '', get_class($this))
44 44
             );
45 45
         }
46 46
         if (!$this->modelName) {
Please login to merge, or discard this patch.