1 | <?php |
||
9 | class CsvDataset extends ArrayDataset |
||
10 | { |
||
11 | /** |
||
12 | * @var array |
||
13 | */ |
||
14 | protected $columnNames; |
||
15 | |||
16 | /** |
||
17 | * @param string $filepath |
||
18 | * @param int $features |
||
19 | * @param bool $headingRow |
||
20 | * |
||
21 | * @throws FileException |
||
22 | */ |
||
23 | public function __construct(string $filepath, int $features, bool $headingRow = true) |
||
46 | |||
47 | /** |
||
48 | * @return array |
||
49 | */ |
||
50 | public function getColumnNames() |
||
54 | } |
||
55 |