server = $server; $this->port = $port; $this->folder = $folder; $this->user = $user; $this->password = $password; $this->authType = $authType; $this->sslEnabled = $sslEnabled; } /** * @return string */ public function getServer(): string { return $this->server; } /** * @return int */ public function getPort(): int { return $this->port; } /** * @return string */ public function getUser(): string { return $this->user; } /** * @return string */ public function getPassword(): string { return $this->password; } /** * @return string */ public function getAuthType(): string { return $this->authType; } /** * @return bool */ public function isSslEnabled(): bool { return $this->sslEnabled; } /** * @return string */ public function getInboxFolder(): string { return $this->folder; } }