Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php namespace Arcanedev\LaravelExcel\Exporters; |
||
32 | 3 | protected function loadOptions() |
|
33 | { |
||
34 | 3 | $this->writer |
|
35 | 3 | ->setFieldDelimiter($this->getOption('field-delimiter', ';')) |
|
36 | 3 | ->setFieldEnclosure($this->getOption('field-enclosure', '"')) |
|
37 | 3 | ->setShouldAddBOM($this->getOption('add-bom', true)); |
|
38 | 3 | } |
|
39 | } |
||
40 |