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