diff options
author | Morris Jobke <hey@morrisjobke.de> | 2018-06-27 17:21:37 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-27 17:21:37 +0200 |
commit | 9b2d855d19b68bed00b6d2c9782deff573616830 (patch) | |
tree | 3b404e8aada9f724a78315e77c925403a67717f8 | |
parent | 221f558f6609cdfcb9e0bf9e89e398f5940254fe (diff) | |
parent | 826ea8c3f947c5ff4522b42c02d7a60a6d98920e (diff) | |
download | nextcloud-server-9b2d855d19b68bed00b6d2c9782deff573616830.tar.gz nextcloud-server-9b2d855d19b68bed00b6d2c9782deff573616830.zip |
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.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'); |