Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php namespace Arcanedev\LaravelExcel\Exporters; |
||
31 | protected function loadOptions() |
||
32 | { |
||
33 | $this->writer |
||
34 | ->setFieldDelimiter( |
||
35 | Arr::get($this->options, 'field-delimiter', ';') |
||
36 | ) |
||
37 | ->setFieldEnclosure( |
||
38 | Arr::get($this->options, 'field-enclosure', '"') |
||
39 | ) |
||
40 | ->setShouldAddBOM( |
||
41 | Arr::get($this->options, 'add-bom', true) |
||
42 | ); |
||
43 | } |
||
44 | } |
||
45 |