client = $client; return $this; } /** * @return IClient */ public function getClient(): IClient { return $this->client; } /** * @return array */ public function getClientOptions(): array { return $this->clientOptions; } /** * @param array $clientOptions * * @return self */ public function setClientOptions(array $clientOptions): self { $this->clientOptions = $clientOptions; return $this; } /** * @return bool */ public function isLocalAddressAllowed(): bool { return $this->localAddressAllowed; } /** * @param bool $allowed * * @return self */ public function setLocalAddressAllowed(bool $allowed): self { $this->localAddressAllowed = $allowed; return $this; } /** * @return bool */ public function hasResult(): bool { return ($this->result !== null); } /** * @return NCRequestResult */ public function getResult(): NCRequestResult { return $this->result; } /** * @param NCRequestResult $result * * @return self */ public function setResult(NCRequestResult $result): self { if (!is_null($this->result)) { $this->previousResults[] = $this->result; } $this->result = $result; return $this; } /** * @return NCRequestResult[] */ public function getPreviousResults(): array { return $this->previousResults; } /** * @return NCRequestResult[] */ public function getAllResults(): array { return array_values(array_merge([$this->getResult()], $this->previousResults)); } /** * @return array */ public function jsonSerialize(): array { $result = null; if ($this->hasResult()) { $result = $this->getResult(); } return array_merge( parent::jsonSerialize(), [ 'clientOptions' => $this->getClientOptions(), 'localAddressAllowed' => $this->isLocalAddressAllowed(), 'result' => $result ] ); } }