2022-09-03 00:28:03 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace NoccyLabs\Dataset;
|
|
|
|
|
|
|
|
|
|
|
|
class Dataset
|
|
|
|
{
|
2022-09-03 12:11:20 +00:00
|
|
|
protected string $identifier;
|
|
|
|
|
|
|
|
protected array $options;
|
2022-09-03 00:28:03 +00:00
|
|
|
|
2022-09-03 12:11:20 +00:00
|
|
|
public function __construct(string $identifier, array $options)
|
2022-09-03 00:28:03 +00:00
|
|
|
{
|
|
|
|
$this->identifier = $identifier;
|
2022-09-03 12:11:20 +00:00
|
|
|
$this->options = $options;
|
2022-09-03 00:28:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function getIdentifier(): string
|
|
|
|
{
|
|
|
|
return $this->identifier;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|