php-dataset/src/Dataset.php

21 lines
326 B
PHP
Raw Normal View History

2022-09-03 00:28:03 +00:00
<?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;
}
}