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

Signed-off-by: Morris Jobke <hey@morrisjobke.de>
This commit is contained in:
Morris Jobke 2018-01-25 22:42:24 +01:00
parent b9bbb894f8
commit 55ef34b23b
No known key found for this signature in database
GPG Key ID: FE03C3A163FEDE68
3 changed files with 3 additions and 3 deletions

View File

@ -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;

View File

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

View File

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