. */ namespace SP\Domain\Export\Services; /** * Class VerifyResult * * @package SP\Domain\Export\Services */ final class VerifyResult { private string $version; private bool $encrypted; private array $nodes; public function __construct(string $version, bool $encrypted, array $nodes) { $this->version = $version; $this->encrypted = $encrypted; $this->nodes = $nodes; } public function getVersion(): string { return $this->version; } public function isEncrypted(): bool { return $this->encrypted; } public function getNodes(): array { return $this->nodes; } }