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:
parent
b9bbb894f8
commit
55ef34b23b
3 changed files with 3 additions and 3 deletions
|
@ -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…
Reference in a new issue