diff options
author | Anna <anna@nextcloud.com> | 2022-02-28 12:03:36 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-28 12:03:36 +0100 |
commit | c203bc71ada7da3642c8465b3ffc2cd80eea6743 (patch) | |
tree | 9c68446770b5ebfea21f6690f688d44a9b099c8c /lib/public | |
parent | 5c4cba17f78abfe6915882665a7d3925c7c883d9 (diff) | |
parent | f68028e85e9d6e65d482aa895b2827c582b3681f (diff) | |
download | nextcloud-server-c203bc71ada7da3642c8465b3ffc2cd80eea6743.tar.gz nextcloud-server-c203bc71ada7da3642c8465b3ffc2cd80eea6743.zip |
Merge pull request #31377 from nextcloud/fix/specify-nullable-string
Specify string as nullable for credentials password
Diffstat (limited to 'lib/public')
-rw-r--r-- | lib/public/Authentication/LoginCredentials/ICredentials.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/public/Authentication/LoginCredentials/ICredentials.php b/lib/public/Authentication/LoginCredentials/ICredentials.php index 9f708c37c37..c01761648a4 100644 --- a/lib/public/Authentication/LoginCredentials/ICredentials.php +++ b/lib/public/Authentication/LoginCredentials/ICredentials.php @@ -53,7 +53,7 @@ interface ICredentials { * * @since 12 * - * @return string + * @return string|null * @throws PasswordUnavailableException */ public function getPassword(); |