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:
authorMorris Jobke <hey@morrisjobke.de>2018-06-27 18:21:37 +0300
committerGitHub <noreply@github.com>2018-06-27 18:21:37 +0300
commit9b2d855d19b68bed00b6d2c9782deff573616830 (patch)
tree3b404e8aada9f724a78315e77c925403a67717f8
parent221f558f6609cdfcb9e0bf9e89e398f5940254fe (diff)
parent826ea8c3f947c5ff4522b42c02d7a60a6d98920e (diff)
Merge pull request #10023 from nextcloud/bugfix/noid/class-name-already-in-use
Use the correct Base class
-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');