Implemented CsvReader, fixed interface

This commit is contained in:
2022-09-03 16:12:22 +02:00
parent b6f5239ea1
commit 21bc519f7e
3 changed files with 89 additions and 3 deletions
+3 -1
View File
@@ -2,7 +2,9 @@
namespace NoccyLabs\Dataset;
interface ReaderInterface
use Iterator;
interface ReaderInterface extends Iterator
{
public function __construct(string $filename, array $options);
}