13 lines
218 B
PHP
13 lines
218 B
PHP
|
<?php
|
||
|
|
||
|
namespace NoccyLabs\Dataset\Readers;
|
||
|
|
||
|
use NoccyLabs\Dataset\ReaderInterface;
|
||
|
|
||
|
class CsvReader implements ReaderInterface
|
||
|
{
|
||
|
public function __construct(string $filename, array $options)
|
||
|
{
|
||
|
|
||
|
}
|
||
|
}
|