Passed
Push — master ( dbcab1...5a8b2f )
by Jonas
22:28 queued 09:31
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/Traits/CompilesPostgresExpressions.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -57,8 +57,8 @@
 block discarded – undo
57 57
         $compiled = parent::compileUpdateFrom($query, $values);
58 58
 
59 59
         return (string) Str::of($compiled)
60
-                           ->prepend($this->compileExpressions($query, $query->expressions), ' ')
61
-                           ->trim();
60
+                            ->prepend($this->compileExpressions($query, $query->expressions), ' ')
61
+                            ->trim();
62 62
     }
63 63
 
64 64
     /**
Please login to merge, or discard this patch.
src/Query/Grammars/Traits/CompilesExpressions.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -110,11 +110,11 @@
 block discarded – undo
110 110
 
111 111
         if ($query instanceof CteBuilder || $query instanceof SingleStoreBuilder) {
112 112
             if ($query->unionExpressions) {
113
-                $sql = $this->compileExpressions($query, $query->unionExpressions) . " $sql";
113
+                $sql = $this->compileExpressions($query, $query->unionExpressions)." $sql";
114 114
             }
115 115
 
116 116
             if (!is_null($query->unionRecursionLimit)) {
117
-                $sql .= ' ' . $this->compileRecursionLimit($query, $query->unionRecursionLimit);
117
+                $sql .= ' '.$this->compileRecursionLimit($query, $query->unionRecursionLimit);
118 118
             }
119 119
         }
120 120
 
Please login to merge, or discard this patch.