@@ -32,7 +32,7 @@ discard block |
||
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 |
||
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 |
||
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 |
||
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) |