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