Passed
Push — master ( 9b6500...1e2780 )
by Jonas
08:34
created
src/Query/Grammars/OrdersByPath.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,6 +22,6 @@
 block discarded – undo
22 22
     {
23 23
         $path = $this->model->getPathName();
24 24
 
25
-        return $this->wrap($path) . ' asc';
25
+        return $this->wrap($path).' asc';
26 26
     }
27 27
 }
Please login to merge, or discard this patch.
src/Query/Grammars/PostgresGrammar.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
             return $this->wrap($alias).' || '.$this->wrap($column);
41 41
         }
42 42
 
43
-        return $this->wrap($alias) . ' || ' . $this->wrap($column) . '::varchar';
43
+        return $this->wrap($alias).' || '.$this->wrap($column).'::varchar';
44 44
     }
45 45
 
46 46
     /**
Please login to merge, or discard this patch.
src/Query/Grammars/MySqlGrammar.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@  discard block
 block discarded – undo
18 18
      */
19 19
     public function compileInitialPath($column, $alias)
20 20
     {
21
-        return 'cast(' . $this->wrap($column) . ' as char(65535)) as ' . $this->wrap($alias);
21
+        return 'cast('.$this->wrap($column).' as char(65535)) as '.$this->wrap($alias);
22 22
     }
23 23
 
24 24
     /**
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
      */
31 31
     public function compileRecursivePath($column, $alias)
32 32
     {
33
-        return 'concat(' . $this->wrap($alias) . ', ?, ' . $this->wrap($column) . ')';
33
+        return 'concat('.$this->wrap($alias).', ?, '.$this->wrap($column).')';
34 34
     }
35 35
 
36 36
     /**
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
     public function selectPathList(Builder $query, $expression, $column, $pathSeparator, $listSeparator)
58 58
     {
59 59
         return $query->selectRaw(
60
-            'group_concat(' . $this->wrap($column) . " separator '$listSeparator')"
60
+            'group_concat('.$this->wrap($column)." separator '$listSeparator')"
61 61
         )->from($expression);
62 62
     }
63 63
 
Please login to merge, or discard this patch.