aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoeland Jago Douma <rullzer@users.noreply.github.com>2018-12-04 09:42:52 +0100
committerGitHub <noreply@github.com>2018-12-04 09:42:52 +0100
commitcfc23dbfb6cc45a8f4a976e9a73c58ec324e0556 (patch)
tree5badf80dcdf0e1f7cf2ec976656db865b6ffce2e
parente3d34765dd0e166062e6527ca2667ec2733cc10c (diff)
parentcfa524030bb974a5f2e0ee171176e629eb1cdb55 (diff)
downloadnextcloud-server-cfc23dbfb6cc45a8f4a976e9a73c58ec324e0556.tar.gz
nextcloud-server-cfc23dbfb6cc45a8f4a976e9a73c58ec324e0556.zip
Merge pull request #12786 from nextcloud/fix/2fa-activatable-deactivatable-phpdoc-typo
Fix activatable/deactivatable 2fa provider interface typos
-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
*