| Total Complexity | 1 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 18 | class Csv extends Base implements SourceInterface, FileInterface |
||
| 19 | { |
||
| 20 | /** @var string $delimiter */ |
||
| 21 | private $delimiter = ';'; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * Csv constructor. |
||
| 25 | * |
||
| 26 | * @param CsvFileInterface $implementor |
||
| 27 | * @param bool $hasHeader |
||
| 28 | * @param string|null $delimiter |
||
| 29 | */ |
||
| 30 | public function __construct( |
||
| 39 |