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