We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bcd529b commit 36127e6Copy full SHA for 36127e6
src/Query/Builder.php
@@ -699,7 +699,7 @@ protected function filterTestNotLike($item, $like)
699
700
protected function filterTestLikeRegex($item, $pattern)
701
{
702
- return preg_match("/{$pattern}/im", $item);
+ return preg_match("/{$pattern}/im", $item ?? '');
703
}
704
705
protected function filterTestNotLikeRegex($item, $pattern)
0 commit comments