| 1 | <?php namespace Arcanedev\LaravelExcel\Importers; |
||
| 12 | class CsvImporter extends AbstractImporter |
||
| 13 | { |
||
| 14 | /* ------------------------------------------------------------------------------------------------ |
||
| 15 | | Properties |
||
| 16 | | ------------------------------------------------------------------------------------------------ |
||
| 17 | */ |
||
| 18 | /** @var string */ |
||
| 19 | protected $type = Type::CSV; |
||
| 20 | |||
| 21 | /** @var \Box\Spout\Reader\CSV\Reader */ |
||
| 22 | protected $reader; |
||
| 23 | |||
| 24 | /* ------------------------------------------------------------------------------------------------ |
||
| 25 | | Other Functions |
||
| 26 | | ------------------------------------------------------------------------------------------------ |
||
| 27 | */ |
||
| 28 | /** |
||
| 29 | * Load the reader options. |
||
| 30 | */ |
||
| 31 | 6 | protected function loadOptions() |
|
| 41 | } |
||
| 42 |