user = $user; $this->password = $password; $this->recoveryPassword = $recoveryPassword; } /** * @return IUser * @since 18.0.0 */ public function getUser(): IUser { return $this->user; } /** * @return string * @since 18.0.0 */ public function getPassword(): string { return $this->password; } /** * @return string|null * @since 18.0.0 */ public function getRecoveryPassword(): ?string { return $this->recoveryPassword; } }