| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 5 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 13 | 6 | public function __construct( |
|
| 14 | private readonly ReflectionParameter $parameter, |
||
| 15 | private readonly TypeRegistryInterface $typeRegistry, |
||
| 16 | ) { |
||
| 17 | 6 | parent::__construct( |
|
| 18 | 6 | $this->parameter->getType(), |
|
| 19 | 6 | $this->typeRegistry, |
|
| 20 | 6 | $this->parameter->getDeclaringClass()->getName(), |
|
| 21 | 6 | ); |
|
| 33 |