diff options
author | Joas Schilling <coding@schilljs.com> | 2018-06-27 14:14:39 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2018-06-27 14:17:00 +0200 |
commit | 826ea8c3f947c5ff4522b42c02d7a60a6d98920e (patch) | |
tree | 3b404e8aada9f724a78315e77c925403a67717f8 /core | |
parent | 221f558f6609cdfcb9e0bf9e89e398f5940254fe (diff) | |
download | nextcloud-server-826ea8c3f947c5ff4522b42c02d7a60a6d98920e.tar.gz nextcloud-server-826ea8c3f947c5ff4522b42c02d7a60a6d98920e.zip |
Use the correct Base class
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'core')
-rw-r--r-- | core/Command/TwoFactorAuth/State.php | 4 |
1 files changed, 0 insertions, 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'); |