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 b9325a5 commit e1ebcc4Copy full SHA for e1ebcc4
src/Event/Dispatcher/DirectDispatcher.php
@@ -86,9 +86,11 @@ public function dispatch(Event $event): void
86
foreach ($this->tracers as $tracer) {
87
try {
88
$tracer->trace($event);
89
+ // @codeCoverageIgnoreStart
90
} catch (Throwable $t) {
91
$this->handleThrowable($t);
92
}
93
+ // @codeCoverageIgnoreEnd
94
95
96
if (!array_key_exists($eventClassName, $this->subscribers)) {
@@ -122,7 +124,9 @@ public function handleThrowable(Throwable $t): void
122
124
return;
123
125
126
127
128
throw $t;
129
130
131
132
private function isThrowableFromThirdPartySubscriber(Throwable $t): bool
0 commit comments