From 20520f215b473e730a59255a2ca315e57fa60d24 Mon Sep 17 00:00:00 2001 From: Ahmed TAILOULOUTE Date: Tue, 24 Dec 2019 01:24:57 +0100 Subject: [PATCH] Update event_dispatcher.rst --- components/event_dispatcher.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/event_dispatcher.rst b/components/event_dispatcher.rst index 6cfff941a4f..6c472d90e97 100644 --- a/components/event_dispatcher.rst +++ b/components/event_dispatcher.rst @@ -404,7 +404,7 @@ from being called. In other words, the listener needs to be able to tell the dispatcher to stop all propagation of the event to future listeners (i.e. to not notify any more listeners). This can be accomplished from inside a listener via the -:method:`Symfony\\Component\\EventDispatcher\\Event::stopPropagation` method:: +:method:`Symfony\\Contracts\\EventDispatcher\\Event::stopPropagation` method:: use Acme\Store\Event\OrderPlacedEvent;