| Total Complexity | 3 |
| Total Lines | 21 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 17 | class KernelRunActionProcessor extends AbstractActionProcessor |
||
| 18 | { |
||
| 19 | /** |
||
| 20 | * {@inheritDoc} |
||
| 21 | */ |
||
| 22 | 8 | protected function createActionProcessorCollection(): array |
|
| 23 | { |
||
| 24 | 8 | return [ |
|
| 25 | 8 | $this->createProvideKernelProcessor(), |
|
| 26 | 8 | $this->createAppCreateEventRunSuccess(), |
|
| 27 | 8 | ]; |
|
| 28 | } |
||
| 29 | |||
| 30 | 8 | protected function createAppCreateEventRunSuccess(): KernelActionProcessorInterface |
|
| 31 | { |
||
| 32 | 8 | return new AppCreateEventRunSuccess(); |
|
| 33 | } |
||
| 34 | |||
| 35 | 8 | protected function createProvideKernelProcessor(): KernelActionProcessorInterface |
|
| 38 | } |
||
| 39 | } |
||
| 40 |