Skip to content

Commit

Permalink
Fix check
Browse files Browse the repository at this point in the history
  • Loading branch information
xepozz committed Sep 21, 2023
1 parent 6a21f13 commit 4087cb9
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/Helper/BacktraceIgnoreMatcher.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@ public static function isIgnoredByClass(array $backtrace, array $classes): bool

public static function doesStringMatchPattern(string $string, array $patterns): bool
{
if (empty($patterns)) {
return false;
}
return (new CombinedRegexp($patterns))->matches($string);
}
}

0 comments on commit 4087cb9

Please sign in to comment.