Total Complexity | 4 |
Total Lines | 30 |
Duplicated Lines | 0 % |
Changes | 3 | ||
Bugs | 1 | Features | 0 |
1 | <?php |
||
10 | class TypeHintParameterResolver implements ParameterResolver |
||
11 | { |
||
12 | /** |
||
13 | * @var ContainerInterface |
||
14 | */ |
||
15 | protected $container; |
||
16 | |||
17 | /** |
||
18 | * @var Reflector |
||
19 | */ |
||
20 | protected $reflector; |
||
21 | |||
22 | public function __construct(ContainerInterface $container, Reflector $reflector) |
||
26 | } |
||
27 | |||
28 | /** |
||
29 | * @inheritDoc |
||
30 | */ |
||
31 | public function resolve(ReflectionParameter $parameter, array $arguments, array &$result): bool |
||
42 |