| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 8 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php namespace Arcanedev\LaravelExcel\Importers; |
||
| 32 | 6 | protected function loadOptions() |
|
| 33 | { |
||
| 34 | 6 | $this->reader |
|
| 35 | 6 | ->setFieldDelimiter($this->getOption('field-delimiter', ',')) |
|
| 36 | 6 | ->setFieldEnclosure($this->getOption('field-enclosure', '"')) |
|
| 37 | 6 | ->setEndOfLineCharacter($this->getOption('eol-character', "\n")) |
|
| 38 | 6 | ->setEncoding($this->getOption('encoding', 'UTF-8')) |
|
| 39 | 6 | ->setShouldPreserveEmptyRows($this->getOption('preserve-empty-rows', false)); |
|
| 40 | 6 | } |
|
| 41 | } |
||
| 42 |