diff options
author | Christoph Wurst <ChristophWurst@users.noreply.github.com> | 2021-11-02 19:23:23 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-02 19:23:23 +0100 |
commit | 95480f5a91ce6b5ff0135d6ec62c36cbf2f121b8 (patch) | |
tree | f7c89efc2755ace135573e4248964f546ee67c39 /tests | |
parent | f90176efce6ea4901ad2f35d50e6bb6d6f35df90 (diff) | |
parent | f8463e1fc671fb9c60b6376df87a4ac54ba27268 (diff) | |
download | nextcloud-server-95480f5a91ce6b5ff0135d6ec62c36cbf2f121b8.tar.gz nextcloud-server-95480f5a91ce6b5ff0135d6ec62c36cbf2f121b8.zip |
Merge pull request #29524 from nextcloud/bugfix/noid/fix-phpunit-warnings
Fix missing import of ILogger
Diffstat (limited to 'tests')
-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; |