Passed
Pull Request — master (#48)
by
unknown
14:13
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
@@ -109,11 +109,11 @@
 block discarded – undo
109 109
         $sql = parent::compileSelect($query);
110 110
         if ($query instanceof CteBuilder or $query instanceof SingleStoreBuilder) {
111 111
             if ($query->unionExpressions) {
112
-                $sql = $this->compileExpressions($query, $query->unionExpressions) . " $sql";
112
+                $sql = $this->compileExpressions($query, $query->unionExpressions)." $sql";
113 113
             }
114 114
 
115 115
             if (!is_null($query->unionRecursionLimit)) {
116
-                $sql .= ' ' . $this->compileRecursionLimit($query, $query->unionRecursionLimit);
116
+                $sql .= ' '.$this->compileRecursionLimit($query, $query->unionRecursionLimit);
117 117
             }
118 118
         }
119 119
 
Please login to merge, or discard this patch.