Failed Conditions
Push — master ( bc79fb...9e41f7 )
by Denis
02:47
created
Query/Condition/Lt.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
 {
16 16
     public function getExpr(QueryBuilder $qb, string $field, int $index, array $val)
17 17
     {
18
-        $expr = $qb->expr()->lt($field, '?' . $index);
18
+        $expr = $qb->expr()->lt($field, '?'.$index);
19 19
         $qb->setParameter($index, $val['val'] ?? '');
20 20
 
21 21
         return $expr;
Please login to merge, or discard this patch.
Query/Condition/Gte.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
 {
16 16
     public function getExpr(QueryBuilder $qb, string $field, int $index, array $val)
17 17
     {
18
-        $expr = $qb->expr()->gte($field, '?' . $index);
18
+        $expr = $qb->expr()->gte($field, '?'.$index);
19 19
         $qb->setParameter($index, $val['val'] ?? '');
20 20
 
21 21
         return $expr;
Please login to merge, or discard this patch.
Query/Condition/Gt.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
 {
16 16
     public function getExpr(QueryBuilder $qb, string $field, int $index, array $val)
17 17
     {
18
-        $expr = $qb->expr()->gt($field, '?' . $index);
18
+        $expr = $qb->expr()->gt($field, '?'.$index);
19 19
         $qb->setParameter($index, $val['val'] ?? '');
20 20
 
21 21
         return $expr;
Please login to merge, or discard this patch.
Query/Condition/NotIn.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
     {
18 18
         $values = explode(',', $val['val'] ?? '');
19 19
         $values = array_map('trim', $values);
20
-        $expr = $qb->expr()->notIn($field, '?' . $index);
20
+        $expr = $qb->expr()->notIn($field, '?'.$index);
21 21
         $qb->setParameter($index, $values);
22 22
 
23 23
         return $expr;
Please login to merge, or discard this patch.
Query/Condition/NotEq.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
 {
16 16
     public function getExpr(QueryBuilder $qb, string $field, int $index, array $val)
17 17
     {
18
-        $expr = $qb->expr()->not($qb->expr()->eq($field, '?' . $index));
18
+        $expr = $qb->expr()->not($qb->expr()->eq($field, '?'.$index));
19 19
         $qb->setParameter($index, $val['val'] ?? '');
20 20
 
21 21
         return $expr;
Please login to merge, or discard this patch.
Query/Condition/MemberOf.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
 {
17 17
     public function getExpr(QueryBuilder $qb, string $field, int $index, array $val)
18 18
     {
19
-        $expr = new DoctrineQuery\Expr\Comparison('?' . $index, 'MEMBER OF', $field);
19
+        $expr = new DoctrineQuery\Expr\Comparison('?'.$index, 'MEMBER OF', $field);
20 20
         $qb->setParameter($index, $val['val'] ?? '');
21 21
 
22 22
         return $expr;
Please login to merge, or discard this patch.
Query/Condition/Lte.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
 {
16 16
     public function getExpr(QueryBuilder $qb, string $field, int $index, array $val)
17 17
     {
18
-        $expr = $qb->expr()->lte($field, '?' . $index);
18
+        $expr = $qb->expr()->lte($field, '?'.$index);
19 19
         $qb->setParameter($index, $val['val'] ?? '');
20 20
 
21 21
         return $expr;
Please login to merge, or discard this patch.