getListenersForEvent($event); if ($lists->isEmpty()) { return $event; } foreach ($lists as $item) { try { call_user_func($item, $event); } catch (\Throwable $exception) { error($exception); } if ($event instanceof StoppableEventInterface && $event->isPropagationStopped()) { break; } } return $event; } }