Files
php-dataset/src/ReaderInterface.php
T

8 lines
133 B
PHP
Raw Normal View History

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