diff options
author | Carl Schwan <carl@carlschwan.eu> | 2022-10-18 14:42:43 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-18 14:42:43 +0200 |
commit | 00c2c620acfdcf188a3ea9047458414749520fa9 (patch) | |
tree | b2c842c9d1754d18ecf274339238aae748985093 /lib/public | |
parent | c67146642261084ad8584207441408e78d84af35 (diff) | |
parent | 419828c791f115fdef3bfa18b9f5c27b8057b292 (diff) | |
download | nextcloud-server-00c2c620acfdcf188a3ea9047458414749520fa9.tar.gz nextcloud-server-00c2c620acfdcf188a3ea9047458414749520fa9.zip |
Merge pull request #34554 from nextcloud/fix/psalm-twofactor-registry
Fix wrong types in phpdoc for twofactor registry
Diffstat (limited to 'lib/public')
-rw-r--r-- | lib/public/Authentication/TwoFactorAuth/IRegistry.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/public/Authentication/TwoFactorAuth/IRegistry.php b/lib/public/Authentication/TwoFactorAuth/IRegistry.php index 1f1b82a4426..0f164902f67 100644 --- a/lib/public/Authentication/TwoFactorAuth/IRegistry.php +++ b/lib/public/Authentication/TwoFactorAuth/IRegistry.php @@ -53,7 +53,7 @@ interface IRegistry { * the given user. * * @since 14.0.0 - * @return string[] where the array key is the provider ID (string) and the + * @return array<string, bool> where the array key is the provider ID (string) and the * value is the enabled state (bool) */ public function getProviderStates(IUser $user): array; |