You are here

EventDispatcherTraceableInterface.php in Devel 4.x

File

webprofiler/src/EventDispatcher/EventDispatcherTraceableInterface.php
View source
<?php

namespace Drupal\webprofiler\EventDispatcher;

use Symfony\Component\EventDispatcher\EventDispatcherInterface;

/**
 *
 */
interface EventDispatcherTraceableInterface extends EventDispatcherInterface {

  /**
   * @return array
   */
  public function getCalledListeners();

  /**
   * @return mixed
   */
  public function getNotCalledListeners();

}

Interfaces