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