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