interface TraceableEventDispatcherInterface

@author Fabien Potencier <fabien@symfony.com>

Hierarchy

Expanded class hierarchy of TraceableEventDispatcherInterface

All classes that implement TraceableEventDispatcherInterface

3 files declare their use of TraceableEventDispatcherInterface
ContainerAwareTraceableEventDispatcher.php in drupal/core/vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Debug/ContainerAwareTraceableEventDispatcher.php
EventDataCollector.php in drupal/core/vendor/symfony/http-kernel/Symfony/Component/HttpKernel/DataCollector/EventDataCollector.php
TestEventDispatcher.php in drupal/core/vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Tests/Fixtures/TestEventDispatcher.php

File

drupal/core/vendor/symfony/event-dispatcher/Symfony/Component/EventDispatcher/Debug/TraceableEventDispatcherInterface.php, line 17

Namespace

Symfony\Component\EventDispatcher\Debug
View source
interface TraceableEventDispatcherInterface {

  /**
   * Gets the called listeners.
   *
   * @return array An array of called listeners
   */
  public function getCalledListeners();

  /**
   * Gets the not called listeners.
   *
   * @return array An array of not called listeners
   */
  public function getNotCalledListeners();

}

Members

Namesort descending Modifiers Type Description Overrides
TraceableEventDispatcherInterface::getCalledListeners public function Gets the called listeners. 2
TraceableEventDispatcherInterface::getNotCalledListeners public function Gets the not called listeners. 2