From e210021fe3413a3df49f546d064b42e47e263069 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Fromme?= Date: Wed, 26 Aug 2026 09:41:47 +0200 Subject: [PATCH] fix: use correct event name in subscriber --- src/EventListener/LoggingSubscriber.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/EventListener/LoggingSubscriber.php b/src/EventListener/LoggingSubscriber.php index 1beef6f..b8ace4c 100644 --- a/src/EventListener/LoggingSubscriber.php +++ b/src/EventListener/LoggingSubscriber.php @@ -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',