host = $host; $this->port = $port; $this->auth = $auth; $this->authToken = $authToken; } public function host(): string { return $this->host; } public function auth(): ?string { return $this->auth; } public function port(): int { return $this->port; } public function authToken() { return $this->authToken; } }