Failed Conditions
Push — master ( 80f050...e7b6d0 )
by Denis
10:18
created
Query/Condition/NotBetween.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 = $field . ' NOT BETWEEN ' . ':x'.$index . ' AND ' . ':y'.$index;
18
+        $expr = $field.' NOT BETWEEN '.':x'.$index.' AND '.':y'.$index;
19 19
         $qb->setParameter('x'.$index, $val['x'] ?? '');
20 20
         $qb->setParameter('y'.$index, $val['y'] ?? '');
21 21
 
Please login to merge, or discard this patch.