password = $password; } /** * @return string */ public function getPassword() { return $this->password; } /** * @param bool */ public function setPasswordSet($passwordSet) { $this->passwordSet = $passwordSet; } /** * @return bool */ public function getPasswordSet() { return $this->passwordSet; } /** * @param string */ public function setUser($user) { $this->user = $user; } /** * @return string */ public function getUser() { return $this->user; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(UserPassword::class, 'Google_Service_DatabaseMigrationService_UserPassword');