Files
php-dataset/src/ReaderInterface.php
T

10 lines
165 B
PHP
Raw Permalink Normal View History

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