php-dataset/src/Dataset.php

24 lines
378 B
PHP
Raw Normal View History

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