| 1 | <?php |
||
| 9 | class ParamCollector implements ParamCollectorInterface |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * @var ParamMapperInterface[] |
||
| 13 | */ |
||
| 14 | private $mappers; |
||
| 15 | |||
| 16 | public function __construct(array $mappers) |
||
| 23 | |||
| 24 | public function collect(Request $request, array $propsMap): array |
||
| 35 | |||
| 36 | private function addMapper(ParamMapperInterface $mapper): void |
||
| 40 | } |
||
| 41 |