From 5910b82de1fe7c19fd47a4cd1bf77093f437264a Mon Sep 17 00:00:00 2001 From: Victor Dubiniuk Date: Mon, 8 Feb 2016 20:37:05 +0300 Subject: [PATCH] Cut authors list. Declare a member variable --- core/command/integrity/checkapp.php | 15 ++++++--------- core/command/integrity/checkcore.php | 14 +++++--------- 2 files changed, 11 insertions(+), 18 deletions(-) diff --git a/core/command/integrity/checkapp.php b/core/command/integrity/checkapp.php index c61f8716de..87b8eb4768 100644 --- a/core/command/integrity/checkapp.php +++ b/core/command/integrity/checkapp.php @@ -1,15 +1,6 @@ - * @author Björn Schießle - * @author Christian Kampka - * @author Joas Schilling - * @author Lukas Reschke - * @author Morris Jobke - * @author Robin McCorkell - * @author Thomas Müller * @author Victor Dubiniuk - * @author Vincent Petry * * @copyright Copyright (c) 2016, ownCloud, Inc. * @license AGPL-3.0 @@ -42,6 +33,12 @@ use Symfony\Component\Console\Output\OutputInterface; * @package OC\Core\Command\Integrity */ class CheckApp extends Base { + + /** + * @var Checker + */ + private $checker; + public function __construct(Checker $checker) { parent::__construct(); $this->checker = $checker; diff --git a/core/command/integrity/checkcore.php b/core/command/integrity/checkcore.php index a1602b8c2e..ac29937e2e 100644 --- a/core/command/integrity/checkcore.php +++ b/core/command/integrity/checkcore.php @@ -1,15 +1,6 @@ - * @author Björn Schießle - * @author Christian Kampka - * @author Joas Schilling - * @author Lukas Reschke - * @author Morris Jobke - * @author Robin McCorkell - * @author Thomas Müller * @author Victor Dubiniuk - * @author Vincent Petry * * @copyright Copyright (c) 2016, ownCloud, Inc. * @license AGPL-3.0 @@ -41,6 +32,11 @@ use Symfony\Component\Console\Output\OutputInterface; * @package OC\Core\Command\Integrity */ class CheckCore extends Base { + /** + * @var Checker + */ + private $checker; + public function __construct(Checker $checker) { parent::__construct(); $this->checker = $checker;