| Total Complexity | 2 |
| Total Lines | 16 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 16 | abstract class AbstractActionProcessor implements KernelActionProcessorInterface |
||
| 17 | { |
||
| 18 | /** |
||
| 19 | * {@inheritDoc} |
||
| 20 | */ |
||
| 21 | 8 | public function process(AppKernelInterface $appKernel): void |
|
| 25 | } |
||
| 26 | } |
||
| 27 | |||
| 28 | /** |
||
| 29 | * @return KernelActionProcessorInterface[] |
||
| 30 | */ |
||
| 31 | abstract protected function createActionProcessorCollection(): array; |
||
| 32 | } |
||
| 33 |