Conditions | 4 |
Paths | 3 |
Total Lines | 13 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 4 |
Changes | 0 |
1 | <?php |
||
11 | 11 | public function format(array $arguments) |
|
12 | { |
||
13 | 11 | $output = new \ArrayObject(); |
|
14 | 11 | foreach ($arguments as $key => $value) { |
|
15 | 5 | if (null === $value || is_scalar($value)) { |
|
16 | 2 | $output[$key] = $value; |
|
17 | } else { |
||
18 | 5 | $this->expandArgument($value, $output); |
|
19 | } |
||
20 | } |
||
21 | |||
22 | 11 | return $output; |
|
23 | } |
||
24 | |||
36 |