version = $version; } public static function default(): self { return new self(self::V1); } public function get(): string { return $this->version; } public function __toString(): string { return $this->version; } }