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