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