@@ -54,7 +54,7 @@ |
||
54 | 54 | $parsedExportedData = array_map('str_getcsv', explode(PHP_EOL, trim($exportedData))); |
55 | 55 | |
56 | 56 | $header = array_shift($parsedExportedData); |
57 | - array_walk($parsedExportedData, function (&$dataRow) use ($header): void { |
|
57 | + array_walk($parsedExportedData, function(&$dataRow) use ($header): void { |
|
58 | 58 | $dataRow = array_combine($header, $dataRow); |
59 | 59 | }); |
60 | 60 |