4 * This file is part of the Symfony package.
6 * (c) Fabien Potencier <fabien@symfony.com>
8 * For the full copyright and license information, please view the LICENSE
9 * file that was distributed with this source code.
12 namespace Symfony\Component\EventDispatcher\Debug
;
15 * @author Fabien Potencier <fabien@symfony.com>
17 interface TraceableEventDispatcherInterface
20 * Gets the called listeners.
22 * @return array An array of called listeners
24 public function getCalledListeners();
27 * Gets the not called listeners.
29 * @return array An array of not called listeners
31 public function getNotCalledListeners();