Merge pull request #8057 from nextcloud/unneeded-implements

Implements are not needed because they are already done by base class
This commit is contained in:
Roeland Jago Douma 2018-01-26 10:00:25 +01:00 committed by GitHub
commit fab951e4b3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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
*/