@@ -3,7 +3,6 @@ |
||
| 3 | 3 | namespace ViewComponents\Doctrine\Processor; |
| 4 | 4 | |
| 5 | 5 | use Doctrine\DBAL\Query\QueryBuilder; |
| 6 | - |
|
| 7 | 6 | use ViewComponents\ViewComponents\Data\Operation\FilterOperation; |
| 8 | 7 | use ViewComponents\ViewComponents\Data\Operation\OperationInterface; |
| 9 | 8 | use ViewComponents\ViewComponents\Data\Processor\ProcessorInterface; |
@@ -27,7 +27,7 @@ |
||
| 27 | 27 | $value = $operation->getValue(); |
| 28 | 28 | $operator = $operation->getOperator(); |
| 29 | 29 | $fieldName = $operation->getField(); |
| 30 | - $parameterName = 'p'. md5($fieldName . $operator); |
|
| 30 | + $parameterName = 'p'.md5($fieldName.$operator); |
|
| 31 | 31 | $src->andWhere("$fieldName $operator :$parameterName"); |
| 32 | 32 | $src->setParameter($parameterName, $value); |
| 33 | 33 | return $src; |