Skip to content

Commit

Permalink
update the TraceableEventDispatcher to reflect its movement to the Ev…
Browse files Browse the repository at this point in the history
…entDispatcher component in Symfony 2.5
  • Loading branch information
xabbuh committed Jun 10, 2014
1 parent 140e54e commit cf667c9
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions components/event_dispatcher/traceable_dispatcher.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,17 @@
The Traceable Event Dispatcher
==============================

The :class:`Symfony\\Component\\HttpKernel\\Debug\\TraceableEventDispatcher`
.. versionadded:: 2.5
The ``TraceableEventDispatcher`` class was moved to the EventDispatcher
component in Symfony 2.5. Before, it was located in the HttpKernel component.

The :class:`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
:class:`Symfony\\Component\\Stopwatch\\Stopwatch` to its constructor::

use Symfony\Component\HttpKernel\Debug\TraceableEventDispatcher;
use Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher;
use Symfony\Component\Stopwatch\Stopwatch;

// the event dispatcher to debug
Expand Down

0 comments on commit cf667c9

Please sign in to comment.