1 | <?php |
||
9 | class PathParamsMapper implements ParamMapperInterface |
||
10 | { |
||
11 | private const REQUIRED_PROPERTY_PREFIX = '!'; |
||
12 | |||
13 | public function map(Request $request, array $propsMap): array |
||
33 | |||
34 | private function isParamRequired(string $paramName): bool |
||
38 | |||
39 | private function assertRequiredParamIsPresent(string $paramName, Request $request): void |
||
49 | } |
||
50 |