Skip to content

Commit 180224d

Browse files
author
simon
authored
Fixed orWhereMatch default params error
1 parent 4ace5b1 commit 180224d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Builder.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ public function whereMatch($field, $value, $boolean = 'and'): self
259259
*
260260
* @return Builder
261261
*/
262-
public function orWhereMatch($field, $value, $boolean = 'and'): self
262+
public function orWhereMatch($field, $value, $boolean = 'or'): self
263263
{
264264
return $this->whereMatch($field, $value, $boolean);
265265
}

0 commit comments

Comments
 (0)