Passed
Pull Request — master (#28)
by
unknown
07:53
created
src/DatabaseServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
      */
15 15
     public function register()
16 16
     {
17
-        $this->app->singleton('db.factory', function ($app) {
17
+        $this->app->singleton('db.factory', function($app) {
18 18
             return new ConnectionFactory($app);
19 19
         });
20 20
     }
Please login to merge, or discard this patch.
src/Query/Grammars/CompilesExpressions.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -85,11 +85,11 @@
 block discarded – undo
85 85
         $sql = parent::compileSelect($query);
86 86
 
87 87
         if ($query->unionExpressions) {
88
-            $sql = $this->compileExpressions($query, $query->unionExpressions) . " $sql";
88
+            $sql = $this->compileExpressions($query, $query->unionExpressions)." $sql";
89 89
         }
90 90
 
91 91
         if (!is_null($query->unionRecursionLimit)) {
92
-            $sql .= ' ' . $this->compileRecursionLimit($query, $query->unionRecursionLimit);
92
+            $sql .= ' '.$this->compileRecursionLimit($query, $query->unionRecursionLimit);
93 93
         }
94 94
 
95 95
         return $sql;
Please login to merge, or discard this patch.