php-dataset/src/Dataset.php

24 lines
378 B
PHP
Raw Normal View History

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;
}
}