8 lines
133 B
PHP
8 lines
133 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace NoccyLabs\Dataset;
|
||
|
|
|
||
|
|
interface ReaderInterface
|
||
|
|
{
|
||
|
|
public function __construct(string $filename, array $options);
|
||
|
|
}
|