-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCsvReaderOptions.php
52 lines (41 loc) · 1.3 KB
/
CsvReaderOptions.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<?php
/*
* Copyright (c) Fusonic GmbH. All rights reserved.
* Licensed under the MIT License. See LICENSE file in the project root for license information.
*/
declare(strict_types=1);
namespace Fusonic\CsvReader;
use Fusonic\CsvReader\Conversion\ValueConverter;
use Fusonic\CsvReader\Conversion\ValueConverterInterface;
class CsvReaderOptions
{
/**
* Field enclosure passed to `fgetcsv()` (one character only).
*/
public string $enclosure = '"';
/**
* Field delimiter passed to `fgetcsv()` (one character only).
*/
public string $delimiter = ',';
/**
* Escape character passed to `fgetcsv()` (one character only).
*/
public string $escape = '\\';
/**
* Enables reading headers from the first row and allows to use `TitleMapping` attribute.
*/
public bool $hasHeaderRow = true;
/**
* Automatically removes the BOM (byte-order mark) from the beginning of the file if there is any.
*/
public bool $removeBOM = true;
/**
* Instance of a `ValueConverterInterface` implementation responsible to convert values from the CSV to their
* respective target types.
*/
public ValueConverterInterface $valueConverter;
public function __construct()
{
$this->valueConverter = new ValueConverter();
}
}