1 | <?php namespace Arcanedev\LaravelExcel\Importers; |
||
11 | class ExcelImporter extends AbstractImporter |
||
12 | { |
||
13 | /* ------------------------------------------------------------------------------------------------ |
||
14 | | Properties |
||
15 | | ------------------------------------------------------------------------------------------------ |
||
16 | */ |
||
17 | /** @var string */ |
||
18 | protected $type = Type::XLSX; |
||
19 | |||
20 | /** @var \Box\Spout\Reader\XLSX\Reader */ |
||
21 | protected $reader; |
||
22 | |||
23 | /* ------------------------------------------------------------------------------------------------ |
||
24 | | Other Functions |
||
25 | | ------------------------------------------------------------------------------------------------ |
||
26 | */ |
||
27 | /** |
||
28 | * Load the reader options. |
||
29 | */ |
||
30 | 6 | protected function loadOptions() |
|
34 | } |
||
35 |