Conditions | 2 |
Paths | 2 |
Total Lines | 11 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
12 | 6 | public function process(array $config, array $service): array |
|
13 | { |
||
14 | 6 | $arguments = []; |
|
15 | /** |
||
16 | * @var string $argument |
||
17 | */ |
||
18 | 6 | foreach ($service['arguments'] as $argument => $value) { |
|
19 | 6 | $arguments[str_replace('$', '', $argument)] = $this->getArguments($config, $value); |
|
20 | } |
||
21 | |||
22 | 6 | return $arguments; |
|
23 | } |
||
49 |