From 9be8c0f21190051cb77fe431d090e5d16f5b6b68 Mon Sep 17 00:00:00 2001 From: Javier Eguiluz Date: Mon, 26 Apr 2021 16:31:56 +0200 Subject: [PATCH] [FrameworkBundle] Fixed the default event dispatcher in event debug command --- .../FrameworkBundle/Command/EventDispatcherDebugCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Bundle/FrameworkBundle/Command/EventDispatcherDebugCommand.php b/src/Symfony/Bundle/FrameworkBundle/Command/EventDispatcherDebugCommand.php index a8ac845ea2107..384165a93dcd7 100644 --- a/src/Symfony/Bundle/FrameworkBundle/Command/EventDispatcherDebugCommand.php +++ b/src/Symfony/Bundle/FrameworkBundle/Command/EventDispatcherDebugCommand.php @@ -30,7 +30,7 @@ */ class EventDispatcherDebugCommand extends Command { - private const DEFAULT_DISPATCHER = 'event_dispatcher'; + private const DEFAULT_DISPATCHER = 'debug.event_dispatcher'; protected static $defaultName = 'debug:event-dispatcher'; protected static $defaultDescription = 'Display configured listeners for an application';