diff options
author | Carl Schwan <carl@carlschwan.eu> | 2022-09-13 13:06:54 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-13 13:06:54 +0200 |
commit | ef31396727771eb771b450e91e7b097b2ca151b9 (patch) | |
tree | 9ab4e885df61dcdd62dddf90d9fe65690529d7ad /lib/private/Authentication | |
parent | 01e2a26749da63e3e06c36d9151570c5beda78d2 (diff) | |
download | nextcloud-server-ef31396727771eb771b450e91e7b097b2ca151b9.tar.gz nextcloud-server-ef31396727771eb771b450e91e7b097b2ca151b9.zip |
Mark method as deprecated
Co-authored-by: Joas Schilling <213943+nickvergessen@users.noreply.github.com>
Signed-off-by: Carl Schwan <carl@carlschwan.eu>
Diffstat (limited to 'lib/private/Authentication')
-rw-r--r-- | lib/private/Authentication/Token/PublicKeyTokenProvider.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/Authentication/Token/PublicKeyTokenProvider.php b/lib/private/Authentication/Token/PublicKeyTokenProvider.php index 3a6558df0d6..741b8fe0c2d 100644 --- a/lib/private/Authentication/Token/PublicKeyTokenProvider.php +++ b/lib/private/Authentication/Token/PublicKeyTokenProvider.php @@ -339,7 +339,7 @@ class PublicKeyTokenProvider implements IProvider { } /** - * @depreacted Fallback for instances where the secret might not have been set by accident + * @deprecated Fallback for instances where the secret might not have been set by accident */ private function hashTokenWithEmptySecret(string $token): string { return hash('sha512', $token); |