| 1 | <?php |
||
| 12 | class JsonRequestModifier implements RequestModifierInterface |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * @var array |
||
| 16 | */ |
||
| 17 | private $supportedTypes; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @param array $supportedTypes |
||
| 21 | */ |
||
| 22 | public function __construct( |
||
| 30 | |||
| 31 | /** |
||
| 32 | * {@inheritdoc} |
||
| 33 | */ |
||
| 34 | public function modify(Request $request) |
||
| 48 | |||
| 49 | /** |
||
| 50 | * @param Request $request |
||
| 51 | * @return bool |
||
| 52 | */ |
||
| 53 | private function supports(Request $request): bool |
||
| 65 | } |
||
| 66 |