Total Complexity | 3 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
17 | final class ContainerArguments extends ReflectionArguments |
||
18 | { |
||
19 | /** |
||
20 | * @var ContainerInterface |
||
21 | */ |
||
22 | private $container; |
||
23 | |||
24 | /** |
||
25 | * @param ContainerInterface $container |
||
26 | */ |
||
27 | 1 | public function __construct(ContainerInterface $container) |
|
28 | { |
||
29 | 1 | $this->container = $container; |
|
30 | 1 | } |
|
31 | |||
32 | /** |
||
33 | * {@inheritdoc} |
||
34 | */ |
||
35 | 1 | protected function resolveArgument(\ReflectionClass $class) |
|
38 | } |
||
39 | } |
||
40 |