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 36127e6 commit 62e1968Copy full SHA for 62e1968
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", (string) $item);
703
}
704
705
protected function filterTestNotLikeRegex($item, $pattern)
0 commit comments