*/ declare(strict_types=1); namespace oat\tao\model\session\Business\Domain; use oat\tao\model\session\Business\Contract\SessionCookieAttributeInterface; final class SessionCookieAttribute implements SessionCookieAttributeInterface { /** @var string */ private $name; /** @var string */ private $value; public function __construct(string $name, string $value) { $this->name = $name; $this->value = $value; } public function __toString(): string { return "$this->name=$this->value"; } }