php-dataset/src/ReaderInterface.php

10 lines
165 B
PHP
Raw Normal View History

2022-09-03 12:39:08 +00:00
<?php
namespace NoccyLabs\Dataset;
2022-09-03 14:12:22 +00:00
use Iterator;
interface ReaderInterface extends Iterator
2022-09-03 12:39:08 +00:00
{
public function __construct(string $filename, array $options);
}