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