php-dataset/src/ReaderInterface.php

10 lines
165 B
PHP

<?php
namespace NoccyLabs\Dataset;
use Iterator;
interface ReaderInterface extends Iterator
{
public function __construct(string $filename, array $options);
}