Total Complexity | 5 |
Total Lines | 35 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | class ParameterResolverChain implements ParameterResolver |
||
12 | { |
||
13 | /** |
||
14 | * @var ParameterResolver[] |
||
15 | */ |
||
16 | protected $chain; |
||
17 | |||
18 | public function __construct(ParameterResolver ...$chain) |
||
21 | } |
||
22 | |||
23 | /** |
||
24 | * @inheritDoc |
||
25 | */ |
||
26 | public function resolve(ReflectionParameter $parameter, array $arguments, array &$result): bool |
||
35 | } |
||
36 | |||
37 | public static function default(Container $container, AttributesInjection $injection, Reflector $reflector): self |
||
49 |