Total Complexity | 4 |
Total Lines | 20 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
23 | { |
||
24 | public function getDelimiter() |
||
25 | { |
||
26 | return $this->delimiter; |
||
27 | } |
||
28 | |||
29 | public function getEnclosure() |
||
30 | { |
||
31 | return $this->enclosure; |
||
32 | } |
||
33 | |||
34 | public function getNewline() |
||
35 | { |
||
36 | return $this->newline; |
||
37 | } |
||
38 | |||
39 | public function getEscapeCharacter() |
||
40 | { |
||
41 | return $this->escape; |
||
42 | } |
||
43 | } |
||
44 |