Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 9 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php namespace Arcanedev\LaravelExcel\Importers; |
||
31 | 6 | protected function loadOptions() |
|
32 | { |
||
33 | 6 | $this->reader |
|
34 | 6 | ->setShouldFormatDates( |
|
35 | 6 | Arr::get($this->options, 'format-dates', false) |
|
36 | 3 | ) |
|
37 | 6 | ->setShouldPreserveEmptyRows( |
|
38 | 6 | Arr::get($this->options, 'preserve-empty-rows', false) |
|
39 | 3 | ); |
|
40 | 6 | } |
|
41 | } |
||
42 |