2014-02-18 18:15:12 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This file is part of the Symfony package.
|
|
|
|
*
|
|
|
|
* (c) Fabien Potencier <fabien@symfony.com>
|
|
|
|
*
|
|
|
|
* For the full copyright and license information, please view the LICENSE
|
|
|
|
* file that was distributed with this source code.
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Symfony\Component\EventDispatcher\Debug;
|
|
|
|
|
2015-01-19 11:11:45 +01:00
|
|
|
use Symfony\Component\EventDispatcher\EventDispatcherInterface;
|
|
|
|
|
2014-02-18 18:15:12 +01:00
|
|
|
/**
|
|
|
|
* @author Fabien Potencier <fabien@symfony.com>
|
|
|
|
*/
|
2015-01-19 11:11:45 +01:00
|
|
|
interface TraceableEventDispatcherInterface extends EventDispatcherInterface
|
2014-02-18 18:15:12 +01:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* 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();
|
|
|
|
}
|