1 | <?php namespace Arcanedev\LaravelExcel\Exporters; |
||
11 | class OpenOfficeExporter extends AbstractExporter |
||
12 | { |
||
13 | /* ------------------------------------------------------------------------------------------------ |
||
14 | | Properties |
||
15 | | ------------------------------------------------------------------------------------------------ |
||
16 | */ |
||
17 | protected $type = Type::ODS; |
||
18 | |||
19 | /* ------------------------------------------------------------------------------------------------ |
||
20 | | Other Functions |
||
21 | | ------------------------------------------------------------------------------------------------ |
||
22 | */ |
||
23 | /** |
||
24 | * Load the writer options. |
||
25 | */ |
||
26 | protected function loadOptions() |
||
30 | } |
||
31 |