You are browsing the documentation for Symfony 5.1 which is not maintained anymore.
Consider upgrading your projects to Symfony 5.2.
The Traceable Event Dispatcher
The Traceable Event Dispatcher¶
The Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher
is an event dispatcher that wraps any other event dispatcher and can then
be used to determine which event listeners have been called by the dispatcher.
Pass the event dispatcher to be wrapped and an instance of the
Symfony\Component\Stopwatch\Stopwatch
to its constructor:
use Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher;
use Symfony\Component\Stopwatch\Stopwatch;
// the event dispatcher to debug
$dispatcher = ...;
$traceableEventDispatcher = new TraceableEventDispatcher(
$dispatcher,
new Stopwatch()
);
Now, the TraceableEventDispatcher
can be used like any other event dispatcher
to register event listeners and dispatch events:
// ...
// registers an event listener
$eventListener = ...;
$priority = ...;
$traceableEventDispatcher->addListener(
'event.the_name',
$eventListener,
$priority
);
// dispatches an event
$event = ...;
$traceableEventDispatcher->dispatch($event, 'event.the_name');
After your application has been processed, you can use the
getCalledListeners()
method to retrieve an array of event listeners that have been called in
your application. Similarly, the
getNotCalledListeners()
method returns an array of event listeners that have not been called:
// ...
$calledListeners = $traceableEventDispatcher->getCalledListeners();
$notCalledListeners = $traceableEventDispatcher->getNotCalledListeners();
This work, including the code samples, is licensed under a Creative Commons BY-SA 3.0 license.