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