diff options
author | Joas Schilling <coding@schilljs.com> | 2021-11-02 16:47:16 +0100 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2021-11-02 16:47:16 +0100 |
commit | f8463e1fc671fb9c60b6376df87a4ac54ba27268 (patch) | |
tree | bef073615927665ae75af010d419cdb7f2584a63 /tests/Core | |
parent | b15b41d731a34860fe4ada6d5991bdd12fae1246 (diff) | |
download | nextcloud-server-f8463e1fc671fb9c60b6376df87a4ac54ba27268.tar.gz nextcloud-server-f8463e1fc671fb9c60b6376df87a4ac54ba27268.zip |
Fix missing import of ILogger
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'tests/Core')
-rw-r--r-- | tests/Core/Controller/TwoFactorChallengeControllerTest.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/Core/Controller/TwoFactorChallengeControllerTest.php b/tests/Core/Controller/TwoFactorChallengeControllerTest.php index 2cb8d4bd50f..561f243eb4b 100644 --- a/tests/Core/Controller/TwoFactorChallengeControllerTest.php +++ b/tests/Core/Controller/TwoFactorChallengeControllerTest.php @@ -31,6 +31,7 @@ use OCP\Authentication\TwoFactorAuth\IActivatableAtLogin; use OCP\Authentication\TwoFactorAuth\ILoginSetupProvider; use OCP\Authentication\TwoFactorAuth\IProvider; use OCP\Authentication\TwoFactorAuth\TwoFactorException; +use OCP\ILogger; use OCP\IRequest; use OCP\ISession; use OCP\IURLGenerator; |