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