Passed
Push — master ( 5b6060...56feb5 )
by Bas
03:56 queued 11s
created
src/Schema/Grammar.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
 
33 33
         $filter = [];
34 34
         foreach ($command->attribute as $attribute) {
35
-            $filter[] = ['doc.' . $attribute, '!=', 'null'];
35
+            $filter[] = ['doc.'.$attribute, '!=', 'null'];
36 36
         }
37 37
 
38 38
         $aqb = (new QueryBuilder())->for('doc', $collection)
@@ -61,8 +61,8 @@  discard block
 block discarded – undo
61 61
         $bindings['to'] = $this->wrapBindVar($command->from);
62 62
 
63 63
         $filter = [
64
-            ['doc.' . $command->from, '!=', 'null'],
65
-            ['doc.' . $command->to],
64
+            ['doc.'.$command->from, '!=', 'null'],
65
+            ['doc.'.$command->to],
66 66
         ];
67 67
 
68 68
         $aqb = (new QueryBuilder())->for('doc', $collection)
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
                 'doc',
72 72
                 [
73 73
                     $command->from => 'null',
74
-                    $command->to => 'doc.' . $command->from,
74
+                    $command->to => 'doc.'.$command->from,
75 75
                 ],
76 76
                 $collection
77 77
             )
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
 
100 100
         $data = [];
101 101
         foreach ($command->attributes as $attribute) {
102
-            $filter[] = ['doc.' . $attribute, '!=', 'null', 'OR'];
102
+            $filter[] = ['doc.'.$attribute, '!=', 'null', 'OR'];
103 103
             $data[$attribute] = 'null';
104 104
         }
105 105
         $aqb = (new QueryBuilder())->for('doc', $collection)
Please login to merge, or discard this patch.