Dataset scanning

This commit is contained in:
2022-09-03 14:11:20 +02:00
parent 3e4db35a47
commit 0542c7e844
2 changed files with 55 additions and 4 deletions

View File

@ -5,11 +5,14 @@ namespace NoccyLabs\Dataset;
class Dataset
{
protected string $identfier;
protected string $identifier;
protected array $options;
public function __construct(string $identifier, string $filename, array $metadata)
public function __construct(string $identifier, array $options)
{
$this->identifier = $identifier;
$this->options = $options;
}
public function getIdentifier(): string