host = $host; $this->port = $port; $this->user = $user; $this->password = $password; } /** * @return string */ public function getHost() { return $this->host; } /** * @return int */ public function getPort() { return $this->port; } /** * @return string */ public function getUser() { return $this->user; } /** * @return string */ public function getPassword() { return $this->password; } }