Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
CRAP | |
0.00% |
0 / 1 |
| HeadingImport | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 1 |
| collection | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
| 1 | <?php |
| 2 | |
| 3 | namespace App\Services\ImportExport; |
| 4 | |
| 5 | use Maatwebsite\Excel\Concerns\ToCollection; |
| 6 | use Maatwebsite\Excel\Concerns\WithHeadingRow; |
| 7 | |
| 8 | /** Reads a sheet as a collection of heading-keyed rows (used by the Manager). */ |
| 9 | class HeadingImport implements ToCollection, WithHeadingRow |
| 10 | { |
| 11 | public function collection($rows): void |
| 12 | { |
| 13 | // |
| 14 | } |
| 15 | } |