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