OpenOfficeExporter::loadOptions()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 2
CRAP Score 1

Importance

Changes 0
Metric Value
dl 0
loc 4
c 0
b 0
f 0
ccs 2
cts 2
cp 1
rs 10
cc 1
nc 1
nop 0
crap 1
1
<?php namespace Arcanedev\LaravelExcel\Exporters;
2
3
use Box\Spout\Common\Type;
4
5
/**
6
 * Class     OpenOfficeExporter
7
 *
8
 * @package  Arcanedev\LaravelExcel\Exporter
9
 * @author   ARCANEDEV <[email protected]>
10
 */
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()
30
    {
31
        //
32 3
    }
33
}
34