Passed
Pull Request — master (#44)
by
unknown
14:58
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/CompilesExpressions.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -87,11 +87,11 @@
 block discarded – undo
87 87
 
88 88
         if ($query instanceof CteBuilder) {
89 89
             if ($query->unionExpressions) {
90
-                $sql = $this->compileExpressions($query, $query->unionExpressions) . " $sql";
90
+                $sql = $this->compileExpressions($query, $query->unionExpressions)." $sql";
91 91
             }
92 92
 
93 93
             if (!is_null($query->unionRecursionLimit)) {
94
-                $sql .= ' ' . $this->compileRecursionLimit($query, $query->unionRecursionLimit);
94
+                $sql .= ' '.$this->compileRecursionLimit($query, $query->unionRecursionLimit);
95 95
             }
96 96
         }
97 97
 
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.