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