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

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2018-06-27 15:14:39 +0300
committerJoas Schilling <coding@schilljs.com>2018-06-27 15:17:00 +0300
commit826ea8c3f947c5ff4522b42c02d7a60a6d98920e (patch)
tree3b404e8aada9f724a78315e77c925403a67717f8 /core/Command
parent221f558f6609cdfcb9e0bf9e89e398f5940254fe (diff)
Use the correct Base class
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'core/Command')
-rw-r--r--core/Command/TwoFactorAuth/State.php4
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');