Conditions | 3 |
Paths | 3 |
Total Lines | 11 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 12 |
Changes | 0 |
1 | <?php |
||
28 | public function denormalize(array $scriptList) |
||
29 | { |
||
30 | $denormalizedList = []; |
||
31 | foreach ($scriptList as $scriptName => $scriptCommandList) { |
||
32 | foreach ($scriptCommandList as $scriptCommand) { |
||
33 | $denormalizedList[] = new Script($scriptName, $scriptCommand); |
||
34 | } |
||
35 | } |
||
36 | |||
37 | return $denormalizedList; |
||
38 | } |
||
39 | } |
||
40 |