Implements are not needed because they are already done by base class

Signed-off-by: Morris Jobke <hey@morrisjobke.de>
pull/8057/head
Morris Jobke 8 years ago
parent b9bbb894f8
commit 55ef34b23b
No known key found for this signature in database
GPG Key ID: FE03C3A163FEDE68
  1. 2
      core/Command/TwoFactorAuth/Base.php
  2. 2
      lib/private/App/CodeChecker/DeprecationCheck.php
  3. 2
      lib/private/App/CodeChecker/PrivateCheck.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;

@ -23,7 +23,7 @@
namespace OC\App\CodeChecker;
class DeprecationCheck extends AbstractCheck implements ICheck {
class DeprecationCheck extends AbstractCheck {
/**
* @return string
*/

@ -22,7 +22,7 @@
namespace OC\App\CodeChecker;
class PrivateCheck extends AbstractCheck implements ICheck {
class PrivateCheck extends AbstractCheck {
/**
* @return string
*/

Loading…
Cancel
Save