Total Complexity | 2 |
Total Lines | 34 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
14 | class Reader extends CsvAbstract implements ReaderInterface |
||
15 | { |
||
16 | /** |
||
17 | * Reader constructor. |
||
18 | * |
||
19 | * @param string $file |
||
20 | * @param string $separator |
||
21 | * @param string $enclosure |
||
22 | * @param string $escape |
||
23 | * @param string $mode |
||
24 | */ |
||
25 | public function __construct( |
||
39 | ); |
||
40 | } |
||
41 | |||
42 | /** |
||
43 | * @return RowInterface |
||
44 | */ |
||
45 | public function current(): RowInterface |
||
50 |