mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-02-24 01:32:22 +01:00
45 lines
950 B
PHP
45 lines
950 B
PHP
<?php declare(strict_types=1);
|
|
|
|
namespace DesignPatterns\Behavioral\Memento;
|
|
|
|
use InvalidArgumentException;
|
|
|
|
class State implements \Stringable
|
|
{
|
|
const STATE_CREATED = 'created';
|
|
const STATE_OPENED = 'opened';
|
|
const STATE_ASSIGNED = 'assigned';
|
|
const STATE_CLOSED = 'closed';
|
|
|
|
private string $state;
|
|
|
|
/**
|
|
* @var string[]
|
|
*/
|
|
private static array $validStates = [
|
|
self::STATE_CREATED,
|
|
self::STATE_OPENED,
|
|
self::STATE_ASSIGNED,
|
|
self::STATE_CLOSED,
|
|
];
|
|
|
|
public function __construct(string $state)
|
|
{
|
|
self::ensureIsValidState($state);
|
|
|
|
$this->state = $state;
|
|
}
|
|
|
|
private static function ensureIsValidState(string $state)
|
|
{
|
|
if (!in_array($state, self::$validStates)) {
|
|
throw new InvalidArgumentException('Invalid state given');
|
|
}
|
|
}
|
|
|
|
public function __toString(): string
|
|
{
|
|
return $this->state;
|
|
}
|
|
}
|