Total Complexity | 3 |
Total Lines | 42 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
9 | class ExcelSplitter |
||
10 | { |
||
11 | /** @var Slugify */ |
||
12 | private $slugify; |
||
13 | |||
14 | 2 | public function __construct(Slugify $slugify) |
|
17 | 2 | } |
|
18 | |||
19 | /** |
||
20 | * @param $filePath |
||
21 | * |
||
22 | * @throws \PhpOffice\PhpSpreadsheet\Reader\Exception |
||
23 | * @throws \PhpOffice\PhpSpreadsheet\Writer\Exception |
||
24 | * |
||
25 | * @return array |
||
26 | */ |
||
27 | 1 | public function split($filePath): array |
|
53 |