From cfa524030bb974a5f2e0ee171176e629eb1cdb55 Mon Sep 17 00:00:00 2001 From: Christoph Wurst Date: Mon, 3 Dec 2018 10:32:53 +0100 Subject: [PATCH] Fix activatable/deactivatable 2fa provider interface typos Signed-off-by: Christoph Wurst --- lib/public/Authentication/TwoFactorAuth/IActivatableByAdmin.php | 2 +- .../Authentication/TwoFactorAuth/IDeactivatableByAdmin.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/public/Authentication/TwoFactorAuth/IActivatableByAdmin.php b/lib/public/Authentication/TwoFactorAuth/IActivatableByAdmin.php index 101beb98db..51f7f08041 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 c08a7c617c..c5d66130f2 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 *