| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Code Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 7 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 46 | 1 | public function __construct( |
|
| 47 | $headerRowNumber = null, |
||
| 48 | $strict = true, |
||
| 49 | $delimiter = ',', |
||
| 50 | $enclosure = '"', |
||
| 51 | $escape = '\\' |
||
| 52 | ) { |
||
| 53 | 1 | $this->headerRowNumber = $headerRowNumber; |
|
| 54 | 1 | $this->strict = $strict; |
|
| 55 | 1 | $this->delimiter = $delimiter; |
|
| 56 | 1 | $this->enclosure = $enclosure; |
|
| 57 | 1 | $this->escape = $escape; |
|
| 58 | 1 | } |
|
| 59 | |||
| 77 |