diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2017-07-21 13:32:10 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-21 13:32:10 +0200 |
commit | a33b6cdd21868abf026375503a4eb5a36684c8eb (patch) | |
tree | a3aa3fb83fc07b4ed3e98197f3e62394b81e99c3 /lib/private | |
parent | 86d2fe516e5a6e5cc61c55c63d54d40177b75518 (diff) | |
parent | 4e42f059ed788ece49b6fac08bd357869c308903 (diff) | |
download | nextcloud-server-a33b6cdd21868abf026375503a4eb5a36684c8eb.tar.gz nextcloud-server-a33b6cdd21868abf026375503a4eb5a36684c8eb.zip |
Merge pull request #5820 from MarcelWaldvogel/minor-documentation-fixes
Minor documentation fixes
Diffstat (limited to 'lib/private')
-rw-r--r-- | lib/private/Authentication/Token/DefaultTokenMapper.php | 2 | ||||
-rw-r--r-- | lib/private/Authentication/Token/DefaultTokenProvider.php | 2 | ||||
-rw-r--r-- | lib/private/Authentication/Token/IProvider.php | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/lib/private/Authentication/Token/DefaultTokenMapper.php b/lib/private/Authentication/Token/DefaultTokenMapper.php index 44bc553a92e..ff31628ffb0 100644 --- a/lib/private/Authentication/Token/DefaultTokenMapper.php +++ b/lib/private/Authentication/Token/DefaultTokenMapper.php @@ -110,7 +110,7 @@ class DefaultTokenMapper extends Mapper { } /** - * Get all token of a user + * Get all tokens of a user * * The provider may limit the number of result rows in case of an abuse * where a high number of (session) tokens is generated diff --git a/lib/private/Authentication/Token/DefaultTokenProvider.php b/lib/private/Authentication/Token/DefaultTokenProvider.php index 6fd85295e03..a1a7e83ea21 100644 --- a/lib/private/Authentication/Token/DefaultTokenProvider.php +++ b/lib/private/Authentication/Token/DefaultTokenProvider.php @@ -132,7 +132,7 @@ class DefaultTokenProvider implements IProvider { } /** - * Get all token of a user + * Get all tokens of a user * * The provider may limit the number of result rows in case of an abuse * where a high number of (session) tokens is generated diff --git a/lib/private/Authentication/Token/IProvider.php b/lib/private/Authentication/Token/IProvider.php index 9f280263d76..8ec1d9b8d6c 100644 --- a/lib/private/Authentication/Token/IProvider.php +++ b/lib/private/Authentication/Token/IProvider.php @@ -105,7 +105,7 @@ interface IProvider { public function updateTokenActivity(IToken $token); /** - * Get all token of a user + * Get all tokens of a user * * The provider may limit the number of result rows in case of an abuse * where a high number of (session) tokens is generated |