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