Total Complexity | 2 |
Total Lines | 28 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
20 | abstract class AbstractEmitEventProcessor implements KernelActionProcessorInterface |
||
21 | { |
||
22 | /** |
||
23 | * {@inheritDoc} |
||
24 | */ |
||
25 | 8 | public function process(AppKernelInterface $appKernel): void |
|
30 | } |
||
31 | |||
32 | abstract protected function createEvent(AppKernelInterface $appKernel): EventInterface; |
||
33 | |||
34 | /** |
||
35 | * @throws \Psr\Container\ContainerExceptionInterface |
||
36 | * @throws \Psr\Container\NotFoundExceptionInterface |
||
37 | * |
||
38 | * @psalm-suppress MoreSpecificReturnType |
||
39 | */ |
||
40 | 8 | protected function lookupEventEmitter(Container $container): EventsFacadeInterface |
|
50 |