Skip to content

Commit 43c199d

Browse files
author
David Nahodyl
committed
fixed syntax error with concatination in whereBetween
1 parent 7e04281 commit 43c199d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Database/Query/FMBaseBuilder.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -603,7 +603,7 @@ protected function addFindRequest()
603603
*/
604604
public function whereBetween($column, iterable $values, $boolean = 'and', $not = false)
605605
{
606-
$this->where($column, null, $values[0] . "..." & $values[1], $boolean);
606+
$this->where($column, null, $values[0] . "..." . $values[1], $boolean);
607607
return $this;
608608
}
609609

0 commit comments

Comments
 (0)