| Total Complexity | 5 |
| Total Lines | 34 |
| Duplicated Lines | 0 % |
| Coverage | 93.33% |
| Changes | 0 | ||
| 1 | <?php |
||
| 13 | final class Constructor |
||
| 14 | { |
||
| 15 | /** @var Instantiator */ |
||
| 16 | private $instantiator; |
||
| 17 | |||
| 18 | 9 | public function __construct(Instantiator $instantiator) |
|
| 19 | { |
||
| 20 | 9 | $this->instantiator = $instantiator; |
|
| 21 | 9 | } |
|
| 22 | |||
| 23 | /** |
||
| 24 | * @param mixed[] $parameters iterable<string, mixed> |
||
| 25 | */ |
||
| 26 | 9 | public function construct(AnnotationMetadata $annotationMetadata, Scope $scope, iterable $parameters) : object |
|
| 47 | } |
||
| 48 | } |
||
| 49 |