Skip to content

Commit 39a2dc5

Browse files
committed
minor #12718 fix TraceableEventDispatcherInterface removed in 5.0 (jzawadzki)
This PR was merged into the 5.0 branch. Discussion ---------- fix TraceableEventDispatcherInterface removed in 5.0 As per https://github.com/symfony/symfony/pull/24392/files in 5.0 `TraceableEventDispatcherInterface` is no more. Commits ------- 7719243 fix TraceableEventDispatcherInterface removed in 5.0
2 parents 0582321 + 7719243 commit 39a2dc5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

components/event_dispatcher/traceable_dispatcher.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,10 @@ to register event listeners and dispatch events::
4141
$traceableEventDispatcher->dispatch($event, 'event.the_name');
4242

4343
After your application has been processed, you can use the
44-
:method:`Symfony\\Component\\EventDispatcher\\Debug\\TraceableEventDispatcherInterface::getCalledListeners`
44+
:method:`Symfony\\Component\\EventDispatcher\\Debug\\TraceableEventDispatcher::getCalledListeners`
4545
method to retrieve an array of event listeners that have been called in
4646
your application. Similarly, the
47-
:method:`Symfony\\Component\\EventDispatcher\\Debug\\TraceableEventDispatcherInterface::getNotCalledListeners`
47+
:method:`Symfony\\Component\\EventDispatcher\\Debug\\TraceableEventDispatcher::getNotCalledListeners`
4848
method returns an array of event listeners that have not been called::
4949

5050
// ...

0 commit comments

Comments
 (0)