From 826ea8c3f947c5ff4522b42c02d7a60a6d98920e Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Wed, 27 Jun 2018 14:14:39 +0200 Subject: [PATCH] Use the correct Base class Signed-off-by: Joas Schilling --- core/Command/TwoFactorAuth/State.php | 4 ---- 1 file changed, 4 deletions(-) diff --git a/core/Command/TwoFactorAuth/State.php b/core/Command/TwoFactorAuth/State.php index 076e2211a12..73e17b4ceb7 100644 --- a/core/Command/TwoFactorAuth/State.php +++ b/core/Command/TwoFactorAuth/State.php @@ -26,7 +26,6 @@ declare(strict_types = 1); namespace OC\Core\Command\TwoFactorAuth; -use OC\Core\Command\Base; use OCP\Authentication\TwoFactorAuth\IRegistry; use OCP\IUserManager; use Symfony\Component\Console\Input\InputArgument; @@ -38,9 +37,6 @@ class State extends Base { /** @var IRegistry */ private $registry; - /** @var IUserManager */ - private $userManager; - public function __construct(IRegistry $registry, IUserManager $userManager) { parent::__construct('twofactorauth:state');