| Total Complexity | 2 |
| Total Lines | 15 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 8 | abstract class AbstractDecodeControllerParametersSubscriber implements |
||
| 9 | EventSubscriberInterface, |
||
| 10 | DecodeControllerParametersSubscriberInterface |
||
| 11 | { |
||
| 12 | protected $decodeControllerParameters; |
||
| 13 | |||
| 14 | public function __construct(DecodeControllerParametersSubscriberInterface $decodeControllerParameters) |
||
| 15 | { |
||
| 16 | $this->decodeControllerParameters = $decodeControllerParameters; |
||
| 17 | } |
||
| 18 | |||
| 19 | public static function getSubscribedEvents(): array |
||
| 23 | ]; |
||
| 24 | } |
||
| 26 |