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