fix: use correct event name in subscriber

This commit is contained in:
2026-08-26 09:41:47 +02:00
parent f3eae5462d
commit e210021fe3
+1 -1
View File
@@ -20,7 +20,7 @@ class LoggingSubscriber implements EventSubscriberInterface
public static function getSubscribedEvents(): array
{
return [
ApplicationCreatedEvent::class => 'onApplicationCreated',
ApplicationCreatedEvent::NAME => 'onApplicationCreated',
ApplicationDeletedEvent::NAME => 'onApplicationDeleted',
ApplicationStatusEvent::NAME => 'onApplicationStatus',
DispositionCreatedEvent::NAME => 'onDispositionCreated',