| Total Complexity | 2 |
| Total Lines | 14 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 9 | class DecodeControllerParametersSubscriber extends AbstractDecodeControllerParametersSubscriber implements |
||
| 10 | DecodeControllerParametersSubscriberInterface |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @param KernelEvent|ControllerEvent $event |
||
| 14 | 1 | */ |
|
| 15 | public function onKernelController(KernelEvent $event): void |
||
| 16 | 1 | { |
|
| 17 | 1 | $this->getDecodeControllerParameters()->decodeControllerParameters($event); |
|
| 18 | } |
||
| 19 | 1 | ||
| 20 | public function getDecodeControllerParameters(): DecodeControllerParameters |
||
| 23 | } |
||
| 24 | } |
||
| 25 |