Total Complexity | 4 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
17 | final class InputParam implements ParamInterface |
||
18 | { |
||
19 | /** @param InputQueryInterface<object> $inputQuery */ |
||
20 | public function __construct( |
||
21 | private readonly InputQueryInterface $inputQuery, |
||
22 | private readonly ReflectionParameter $parameter, |
||
23 | ) { |
||
24 | } |
||
25 | |||
26 | /** |
||
27 | * {@inheritDoc} |
||
28 | */ |
||
29 | #[Override] |
||
42 | } |
||
43 | } |
||
44 |