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