Total Complexity | 4 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
8 | class VariadicParameterResolver implements ParameterResolver |
||
9 | { |
||
10 | /** |
||
11 | * @var mixed |
||
12 | */ |
||
13 | protected $value; |
||
14 | |||
15 | public function __construct($value) |
||
18 | } |
||
19 | |||
20 | /** |
||
21 | * @inheritDoc |
||
22 | */ |
||
23 | public function resolve(ReflectionParameter $parameter, array $arguments, array &$result): bool |
||
35 |