| Conditions | 2 |
| Paths | 2 |
| Total Lines | 13 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 8 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 15 | 3 | public static function transformData($content) |
|
| 16 | { |
||
| 17 | 3 | $rows = array_map('str_getcsv', explode("\n", trim($content))); |
|
| 18 | 3 | $columns = array_shift($rows); |
|
| 19 | 3 | $csv = []; |
|
| 20 | |||
| 21 | 3 | foreach ($rows as $row) |
|
| 22 | { |
||
| 23 | 2 | $csv[] = array_combine($columns, $row); |
|
| 24 | 3 | } |
|
| 25 | |||
| 26 | 3 | return $csv; |
|
| 27 | } |
||
| 28 | |||
| 39 |