Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
21 | protected function checkRequest( |
||
22 | RequestInterface $request, |
||
23 | DataTransformerInterface $transformer, |
||
24 | ConfigurationInterface $configuration |
||
25 | ) { |
||
26 | $processor = new Processor(); |
||
27 | $params = $transformer->transform($request); |
||
28 | |||
29 | return $processor->processConfiguration($configuration, ['params' => array_filter($params)]); |
||
30 | } |
||
31 | } |
||
32 |