Initial commit

This commit is contained in:
2022-09-03 02:28:03 +02:00
commit 7059efb6fa
8 changed files with 792 additions and 0 deletions

21
src/Dataset.php Normal file
View File

@ -0,0 +1,21 @@
<?php
namespace NoccyLabs\Dataset;
class Dataset
{
protected string $identfier;
public function __construct(string $identifier, string $filename, array $metadata)
{
$this->identifier = $identifier;
}
public function getIdentifier(): string
{
return $this->identifier;
}
}