Browse Source

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

Signed-off-by: Morris Jobke <hey@morrisjobke.de>
tags/v14.0.0beta1
Morris Jobke 6 years ago
parent
commit
55ef34b23b
No account linked to committer's email address

+ 1
- 1
core/Command/TwoFactorAuth/Base.php 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;

+ 1
- 1
lib/private/App/CodeChecker/DeprecationCheck.php View File

@@ -23,7 +23,7 @@

namespace OC\App\CodeChecker;

class DeprecationCheck extends AbstractCheck implements ICheck {
class DeprecationCheck extends AbstractCheck {
/**
* @return string
*/

+ 1
- 1
lib/private/App/CodeChecker/PrivateCheck.php View File

@@ -22,7 +22,7 @@

namespace OC\App\CodeChecker;

class PrivateCheck extends AbstractCheck implements ICheck {
class PrivateCheck extends AbstractCheck {
/**
* @return string
*/

Loading…
Cancel
Save