Files
php-dataset/src/ReaderInterface.php
T
2022-09-03 14:39:08 +02:00

8 lines
133 B
PHP

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