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