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

ExcelExporter   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 20
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Test Coverage

Coverage 0%

Importance

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

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     ExcelExporter
7
 *
8
 * @package  Arcanedev\LaravelExcel\Exporter
9
 * @author   ARCANEDEV <[email protected]>
10
 */
11
class ExcelExporter extends AbstractExporter
12
{
13
    /* ------------------------------------------------------------------------------------------------
14
     |  Properties
15
     | ------------------------------------------------------------------------------------------------
16
     */
17
    protected $type = Type::XLSX;
18
19
    /* ------------------------------------------------------------------------------------------------
20
     |  Other Functions
21
     | ------------------------------------------------------------------------------------------------
22
     */
23
    /**
24
     * Load the writer options.
25
     */
26
    protected function loadOptions()
27
    {
28
        //
29
    }
30
}
31