Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorCarl Schwan <carl@carlschwan.eu>2022-10-12 12:40:41 +0300
committerCarl Schwan <carl@carlschwan.eu>2022-10-12 12:40:41 +0300
commitbfd2b74c680836d5746d40023a7dc0f62216a6b7 (patch)
tree869cebd59809332322740cd50f9edd755f065dcf /lib
parentcf5bf3036dee4527b93c5bb8e43c0ed3a216e15a (diff)
Fix wrong types in phpdoc for twofactor registryfix/psalm-twofactor-registry
Signed-off-by: Carl Schwan <carl@carlschwan.eu>
Diffstat (limited to 'lib')
-rw-r--r--lib/public/Authentication/TwoFactorAuth/IRegistry.php2
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;