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
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2018-12-03 12:32:53 +0300
committerBackportbot <backportbot-noreply@rullzer.com>2018-12-04 11:43:35 +0300
commitad61fda11c12be7b718423a881ffd137cefb09e8 (patch)
tree608468ee5a85b940f353ed800c2eacbccc1f62dd /lib/public
parentfaf27a1f20db1f8425115f4dba92fe71c4d0fe86 (diff)
Fix activatable/deactivatable 2fa provider interface typos
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'lib/public')
-rw-r--r--lib/public/Authentication/TwoFactorAuth/IActivatableByAdmin.php2
-rw-r--r--lib/public/Authentication/TwoFactorAuth/IDeactivatableByAdmin.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/public/Authentication/TwoFactorAuth/IActivatableByAdmin.php b/lib/public/Authentication/TwoFactorAuth/IActivatableByAdmin.php
index 101beb98db1..51f7f08041f 100644
--- a/lib/public/Authentication/TwoFactorAuth/IActivatableByAdmin.php
+++ b/lib/public/Authentication/TwoFactorAuth/IActivatableByAdmin.php
@@ -40,7 +40,7 @@ interface IActivatableByAdmin extends IProvider {
/**
* Enable this provider for the given user.
*
- * @param IUser $user the user to active this provider for
+ * @param IUser $user the user to activate this provider for
*
* @return void
*
diff --git a/lib/public/Authentication/TwoFactorAuth/IDeactivatableByAdmin.php b/lib/public/Authentication/TwoFactorAuth/IDeactivatableByAdmin.php
index c08a7c617c1..c5d66130f2f 100644
--- a/lib/public/Authentication/TwoFactorAuth/IDeactivatableByAdmin.php
+++ b/lib/public/Authentication/TwoFactorAuth/IDeactivatableByAdmin.php
@@ -40,7 +40,7 @@ interface IDeactivatableByAdmin extends IProvider {
/**
* Disable this provider for the given user.
*
- * @param IUser $user the user to active this provider for
+ * @param IUser $user the user to deactivate this provider for
*
* @return void
*