| Total Complexity | 6 |
| Total Lines | 41 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 12 | class InjectionParameterResolver implements ParameterResolver |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * @var ContainerInterface |
||
| 16 | */ |
||
| 17 | protected $container; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @var AttributesInjection |
||
| 21 | */ |
||
| 22 | protected $injection; |
||
| 23 | |||
| 24 | public function __construct(ContainerInterface $container, AttributesInjection $injection) |
||
| 28 | } |
||
| 29 | |||
| 30 | /** |
||
| 31 | * @inheritDoc |
||
| 32 | */ |
||
| 33 | public function resolve(ReflectionParameter $parameter, array $arguments, array &$result): bool |
||
| 55 |