diff options
author | Anna Larch <anna@nextcloud.com> | 2022-02-28 11:08:48 +0100 |
---|---|---|
committer | Anna Larch <anna@nextcloud.com> | 2022-02-28 11:08:48 +0100 |
commit | f68028e85e9d6e65d482aa895b2827c582b3681f (patch) | |
tree | a5b83f7dd3a0e9fbb813f91fcb4573e805d206e5 /lib/public | |
parent | 9630d6571cacff635d148a63599c42a5873bc44e (diff) | |
download | nextcloud-server-f68028e85e9d6e65d482aa895b2827c582b3681f.tar.gz nextcloud-server-f68028e85e9d6e65d482aa895b2827c582b3681f.zip |
Specify string as nullable for credentials password
Signed-off-by: Anna Larch <anna@nextcloud.com>
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(); |