Reader mockup

This commit is contained in:
2022-09-03 14:39:08 +02:00
parent 0542c7e844
commit 65e8f39da4
5 changed files with 66 additions and 0 deletions

View File

@ -0,0 +1,13 @@
<?php
namespace NoccyLabs\Dataset\Readers;
use NoccyLabs\Dataset\ReaderInterface;
class JsonReader implements ReaderInterface
{
public function __construct(string $filename, array $options)
{
}
}