diff options
author | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2020-04-15 19:34:23 +0200 |
---|---|---|
committer | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2020-04-15 19:34:23 +0200 |
commit | 5437844b7ec24d6011e8f1e4a0df5f727d259ea5 (patch) | |
tree | 3683815b562d4897d3d6eabf69e5e4513b3aa9d2 /lib/public | |
parent | f6cb45203755d85b33684b1dab1a91b5b05e8c9a (diff) | |
download | nextcloud-server-5437844b7ec24d6011e8f1e4a0df5f727d259ea5.tar.gz nextcloud-server-5437844b7ec24d6011e8f1e4a0df5f727d259ea5.zip |
fix credentialsManager documentation and ensure userId to be used as string
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
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 |