1 | <?php |
||
18 | class EventHandlerFromSymfonyEventDispatcher implements EventHandlerInterface |
||
19 | { |
||
20 | /** |
||
21 | * EventDispatcherInterface |
||
22 | * |
||
23 | * @var EventDispatcherInterface |
||
24 | */ |
||
25 | private $eventDispatcher; |
||
26 | |||
27 | /** |
||
28 | * EventHandlerFromSymfonyEventDispatcher constructor. |
||
29 | * |
||
30 | * @param EventDispatcherInterface $eventDispatcher Symfony event dispatcher |
||
31 | */ |
||
32 | 1 | public function __construct(EventDispatcherInterface $eventDispatcher) |
|
36 | |||
37 | /** {@inheritdoc} */ |
||
38 | 1 | public function invokeEvent(Event $event) |
|
42 | } |
||
43 |