diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2018-01-26 10:00:25 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-26 10:00:25 +0100 |
commit | fab951e4b3d103b68b21ccb864d229c4023b57ac (patch) | |
tree | ef72d24492fcbf05f84b76266722a251cdc75c40 /core | |
parent | e97165e0b57b4b90075dff1f22848868cf43c014 (diff) | |
parent | 55ef34b23ba4bf1a33f928cbac5849fd25fb2ac6 (diff) | |
download | nextcloud-server-fab951e4b3d103b68b21ccb864d229c4023b57ac.tar.gz nextcloud-server-fab951e4b3d103b68b21ccb864d229c4023b57ac.zip |
Merge pull request #8057 from nextcloud/unneeded-implements
Implements are not needed because they are already done by base class
Diffstat (limited to 'core')
-rw-r--r-- | core/Command/TwoFactorAuth/Base.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Command/TwoFactorAuth/Base.php b/core/Command/TwoFactorAuth/Base.php index fe817d214ba..c5340656534 100644 --- a/core/Command/TwoFactorAuth/Base.php +++ b/core/Command/TwoFactorAuth/Base.php @@ -28,7 +28,7 @@ use OCP\IUser; use Stecman\Component\Symfony\Console\BashCompletion\Completion\CompletionAwareInterface; use Stecman\Component\Symfony\Console\BashCompletion\CompletionContext; -class Base extends \OC\Core\Command\Base implements CompletionAwareInterface { +class Base extends \OC\Core\Command\Base { /** @var IUserManager */ protected $userManager; |