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 bf3e3e2 commit 59f9682Copy full SHA for 59f9682
src/DataCollector/EventCollector.php
@@ -36,7 +36,7 @@ public function onWildcardEvent($name = null, $data = [])
36
$eventClass = explode(':', $name)[0];
37
38
foreach ($this->excludedEvents as $excludedEvent) {
39
- if (str_starts_with($eventClass, $excludedEvent)) {
+ if (Str::is($excludedEvent, $eventClass)) {
40
return;
41
}
42
0 commit comments