Skip to content

Commit 5f8de75

Browse files
[FrameworkBundle] fix debug:event-dispatcher and debug:firewall
1 parent f2b5a2a commit 5f8de75

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Resources/config/console.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@
131131

132132
->set('console.command.event_dispatcher_debug', EventDispatcherDebugCommand::class)
133133
->args([
134-
tagged_locator('event_dispatcher.dispatcher'),
134+
tagged_locator('event_dispatcher.dispatcher', 'name'),
135135
])
136136
->tag('console.command')
137137

Resources/config/services.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ class_exists(WorkflowEvents::class) ? WorkflowEvents::ALIASES : []
6969
->set('event_dispatcher', EventDispatcher::class)
7070
->public()
7171
->tag('container.hot_path')
72-
->tag('event_dispatcher.dispatcher')
72+
->tag('event_dispatcher.dispatcher', ['name' => 'event_dispatcher'])
7373
->alias(EventDispatcherInterfaceComponentAlias::class, 'event_dispatcher')
7474
->alias(EventDispatcherInterface::class, 'event_dispatcher')
7575

0 commit comments

Comments
 (0)