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