Total Complexity | 9 |
Total Lines | 39 |
Duplicated Lines | 0 % |
Coverage | 85.71% |
Changes | 0 |
1 | <?php |
||
11 | class LazyEventDispatcher extends EventDispatcher |
||
12 | { |
||
13 | /** |
||
14 | * @var PsrContainerInterface|ContainerInterface |
||
15 | 18 | */ |
|
16 | private $container; |
||
17 | 18 | ||
18 | /** |
||
19 | * @param PsrContainerInterface|ContainerInterface $container |
||
20 | */ |
||
21 | 18 | public function __construct($container) |
|
28 | } |
||
29 | 16 | ||
30 | /** |
||
31 | 16 | * {@inheritdoc} |
|
32 | 16 | */ |
|
33 | 12 | protected function initializeListeners(string $eventName, string $loweredClass, string $format): array |
|
52 |