@@ -205,11 +205,11 @@ |
||
| 205 | 205 | $innerJoins = $andFilterFactory->getInnerJoin(); |
| 206 | 206 | $leftJoins = $andFilterFactory->getLeftJoin(); |
| 207 | 207 | |
| 208 | - foreach($conditions as $condition) { |
|
| 208 | + foreach ($conditions as $condition) { |
|
| 209 | 209 | $this->qBuilder->andWhere($condition); |
| 210 | 210 | } |
| 211 | 211 | |
| 212 | - foreach($parameters as $parameter) { |
|
| 212 | + foreach ($parameters as $parameter) { |
|
| 213 | 213 | $this->qBuilder->setParameter($parameter['field'], $parameter['value']); |
| 214 | 214 | } |
| 215 | 215 | |
@@ -26,7 +26,7 @@ |
||
| 26 | 26 | $this->fields = $fields; |
| 27 | 27 | $this->conditions = []; |
| 28 | 28 | $this->parameters = []; |
| 29 | - $this->parser = new StringParser(); |
|
| 29 | + $this->parser = new StringParser(); |
|
| 30 | 30 | $this->joinFactory = $joinFactory; |
| 31 | 31 | } |
| 32 | 32 | |