Completed
Push — master ( cf0a63...b69372 )
by ARCANEDEV
17s
created

OpenOfficeExporter   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 21
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 1
dl 0
loc 21
ccs 2
cts 2
cp 1
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A loadOptions() 0 4 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
    /** @var string */
18
    protected $type = Type::ODS;
19
20
    /* ------------------------------------------------------------------------------------------------
21
     |  Other Functions
22
     | ------------------------------------------------------------------------------------------------
23
     */
24
    /**
25
     * Load the writer options.
26
     */
27 3
    protected function loadOptions()
28
    {
29
        //
30 3
    }
31
}
32