| 1 | <?php |
||
| 22 | final class JsonDecoderListener implements EventSubscriberInterface |
||
| 23 | { |
||
| 24 | public const HEADER_CONTENT_TYPE = 'Content-Type'; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * {@inheritdoc} |
||
| 28 | */ |
||
| 29 | public static function getSubscribedEvents(): \Generator |
||
| 33 | |||
| 34 | /** |
||
| 35 | * @param RequestEvent $event |
||
| 36 | */ |
||
| 37 | public function __invoke(RequestEvent $event): void |
||
| 62 | } |
||
| 63 |