1 | <?php |
||
12 | class DataTransformer |
||
13 | { |
||
14 | /** |
||
15 | * @param array $row |
||
16 | * @param mixed $columns |
||
17 | * @param string $type |
||
18 | * @return array |
||
19 | */ |
||
20 | public function transform(array $row, $columns, $type = 'printable') |
||
28 | |||
29 | /** |
||
30 | * Transform row column by collection. |
||
31 | * |
||
32 | * @param array $row |
||
33 | * @param \Illuminate\Support\Collection $columns |
||
34 | * @param string $type |
||
35 | * @return array |
||
36 | */ |
||
37 | protected function buildColumnByCollection(array $row, Collection $columns, $type = 'printable') |
||
50 | } |
||
51 |