Completed
Push — master ( 005d42...c6a537 )
by ARCANEDEV
9s
created

OpenOfficeImporter::loadOptions()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

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