Dominik Liebler 4678b5d86f PHP8
2021-04-12 14:04:45 +02:00

16 lines
242 B
PHP

<?php declare(strict_types=1);
namespace DesignPatterns\Behavioral\Memento;
class Memento
{
public function __construct(private State $state)
{
}
public function getState(): State
{
return $this->state;
}
}