12345678910111213141516171819202122232425262728293031323334353637 |
- <?php
- namespace Symfony\Component\EventDispatcher\Debug;
- use Symfony\Component\EventDispatcher\EventDispatcherInterface;
- use Symfony\Contracts\Service\ResetInterface;
- interface TraceableEventDispatcherInterface extends EventDispatcherInterface, ResetInterface
- {
-
- public function getCalledListeners();
-
- public function getNotCalledListeners();
- }
|