Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/twofactor_totp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2020-03-31 10:40:55 +0300
committerChristoph Wurst <christoph@winzerhof-wurst.at>2020-03-31 10:40:55 +0300
commit660e2b36cb788b7a5de87a4975078ea39fb58246 (patch)
tree98e29fc9699807f96d3558e9315eddf19beef81d /lib
parenteee0bf925cc536d5ae2e5ede5618306b6f3bc0da (diff)
Clean up php coding style
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'lib')
-rw-r--r--lib/AppInfo/Application.php1
-rw-r--r--lib/Service/Totp.php1
2 files changed, 0 insertions, 2 deletions
diff --git a/lib/AppInfo/Application.php b/lib/AppInfo/Application.php
index 744be67..532a1cd 100644
--- a/lib/AppInfo/Application.php
+++ b/lib/AppInfo/Application.php
@@ -25,7 +25,6 @@ namespace OCA\TwoFactorTOTP\AppInfo;
use OCA\TwoFactorTOTP\Event\DisabledByAdmin;
use OCA\TwoFactorTOTP\Event\StateChanged;
-use OCA\TwoFactorTOTP\Listener\IListener;
use OCA\TwoFactorTOTP\Listener\StateChangeActivity;
use OCA\TwoFactorTOTP\Listener\StateChangeRegistryUpdater;
use OCA\TwoFactorTOTP\Service\ITotp;
diff --git a/lib/Service/Totp.php b/lib/Service/Totp.php
index 81c4c6e..8944120 100644
--- a/lib/Service/Totp.php
+++ b/lib/Service/Totp.php
@@ -37,7 +37,6 @@ use OCP\EventDispatcher\IEventDispatcher;
use OCP\IUser;
use OCP\Security\ICrypto;
use OCP\Security\ISecureRandom;
-use Symfony\Component\EventDispatcher\EventDispatcherInterface;
class Totp implements ITotp {