diff options
author | blizzz <blizzz@arthur-schiwon.de> | 2020-04-16 11:53:24 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-16 11:53:24 +0200 |
commit | d55f4183b568aa46daacd266e842bb458ea8ce9d (patch) | |
tree | 70e08388ddebbcb4c7049440488f5f6faa6a8789 /lib/public | |
parent | 8971403ada3da110dc0835853e83f231103b11d9 (diff) | |
parent | 5437844b7ec24d6011e8f1e4a0df5f727d259ea5 (diff) | |
download | nextcloud-server-d55f4183b568aa46daacd266e842bb458ea8ce9d.tar.gz nextcloud-server-d55f4183b568aa46daacd266e842bb458ea8ce9d.zip |
Merge pull request #20505 from nextcloud/fix/noid/system-creds
do not advertise nulled userId for for systemwide credentials
Diffstat (limited to 'lib/public')
-rw-r--r-- | lib/public/Security/ICredentialsManager.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/public/Security/ICredentialsManager.php b/lib/public/Security/ICredentialsManager.php index b1daad30c9f..0b34d9a28ca 100644 --- a/lib/public/Security/ICredentialsManager.php +++ b/lib/public/Security/ICredentialsManager.php @@ -33,7 +33,7 @@ interface ICredentialsManager { /** * Store a set of credentials * - * @param string|null $userId Null for system-wide credentials + * @param string $userId empty string for system-wide credentials * @param string $identifier * @param mixed $credentials * @since 8.2.0 @@ -43,7 +43,7 @@ interface ICredentialsManager { /** * Retrieve a set of credentials * - * @param string|null $userId Null for system-wide credentials + * @param string $userId empty string for system-wide credentials * @param string $identifier * @return mixed * @since 8.2.0 @@ -53,7 +53,7 @@ interface ICredentialsManager { /** * Delete a set of credentials * - * @param string|null $userId Null for system-wide credentials + * @param string $userId empty string for system-wide credentials * @param string $identifier * @return int rows removed * @since 8.2.0 |