Skip to content

Commit

Permalink
update Builder
Browse files Browse the repository at this point in the history
  • Loading branch information
harris21 committed Dec 1, 2022
1 parent 0189501 commit 01b7a1a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Query/Builder.php
Original file line number Diff line number Diff line change
Expand Up @@ -457,13 +457,13 @@ public function whereIn($column, $values, $boolean = 'and', $not = false)
* Add a where between statement to the query.
*
* @param string $column
* @param array $values
* @param iterable $values
* @param string $boolean
* @param bool $not
*
* @return \Illuminate\Database\Query\Builder|static
*/
public function whereBetween($column, array $values, $boolean = 'and', $not = false)
public function whereBetween($column, iterable $values, $boolean = 'and', $not = false)
{
$type = 'between';

Expand Down

0 comments on commit 01b7a1a

Please sign in to comment.