class TestEventDispatcher

Hierarchy

Expanded class hierarchy of TestEventDispatcher

File

drupal/core/vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Tests/Fixtures/TestEventDispatcher.php, line 17

Namespace

Symfony\Component\HttpKernel\Tests\Fixtures
View source
class TestEventDispatcher extends EventDispatcher implements TraceableEventDispatcherInterface {
  public function getCalledListeners() {
    return array(
      'foo',
    );
  }
  public function getNotCalledListeners() {
    return array(
      'bar',
    );
  }

}

Members