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