1 | <?php namespace Arcanedev\LaravelExcel\Importers; |
||
11 | class DefaultParser implements ParserContract |
||
12 | { |
||
13 | /* ----------------------------------------------------------------- |
||
14 | | Main Functions |
||
15 | | ----------------------------------------------------------------- |
||
16 | */ |
||
17 | |||
18 | /** |
||
19 | * Transform the parsed data. |
||
20 | * |
||
21 | * @param array $row |
||
22 | * |
||
23 | * @return mixed |
||
24 | */ |
||
25 | 18 | public function transform(array $row) |
|
29 | } |
||
30 |