| 1 | <?php |
||
| 14 | class EventDispatcherBySubscriber implements EventDispatcher |
||
| 15 | { |
||
| 16 | /** @var EventSubscriber */ |
||
| 17 | private $eventSubscriber; |
||
| 18 | |||
| 19 | /** @var LoggerInterface|null */ |
||
| 20 | private $logger; |
||
| 21 | |||
| 22 | 11 | public function __construct( |
|
| 30 | |||
| 31 | 6 | public function dispatchEvent(EventWithMetaData $eventWithMetadata) |
|
| 51 | } |