@@ -19,7 +19,7 @@ |
||
19 | 19 | */ |
20 | 20 | public function getQuery() |
21 | 21 | { |
22 | - $queryParts = array_map(function ($value) { |
|
22 | + $queryParts = array_map(function($value) { |
|
23 | 23 | return ($value instanceof Operator) ? $value->expression() : $value; |
24 | 24 | }, $this->queryParts); |
25 | 25 |
@@ -17,6 +17,6 @@ |
||
17 | 17 | |
18 | 18 | public function expression() |
19 | 19 | { |
20 | - return $this->field . $this->operator . $this->value; |
|
20 | + return $this->field.$this->operator.$this->value; |
|
21 | 21 | } |
22 | 22 | } |