Skip to content

Commit 65a6e03

Browse files
committed
fix
1 parent af56583 commit 65a6e03

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Laravel/Filter/Where.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ public function apply(object $query, array|string $value, Context $context): voi
8686
case 'notnull':
8787
$this->applyNull(
8888
$query,
89-
$operator === 'null' xor !filter_var($value, FILTER_VALIDATE_BOOLEAN),
89+
$operator === 'null' xor !filter_var($v, FILTER_VALIDATE_BOOLEAN),
9090
);
9191
break;
9292

0 commit comments

Comments
 (0)