1 | <?php |
||
20 | abstract class AbstractDelegateSubscriber extends AbstractSubscriber implements DelegateSubscriberInterface |
||
21 | { |
||
22 | /** |
||
23 | * @param Event $event |
||
24 | * @param string $eventName |
||
25 | * @param EventDispatcherInterface $eventDispatcher |
||
26 | */ |
||
27 | 264 | public function handle(Event $event, $eventName, EventDispatcherInterface $eventDispatcher) |
|
37 | |||
38 | /** |
||
39 | * {@inheritdoc} |
||
40 | */ |
||
41 | 276 | public static function getSubscribedEvents() |
|
51 | } |
||
52 |