aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVictor Dubiniuk <victor.dubiniuk@gmail.com>2016-02-08 20:37:05 +0300
committerVictor Dubiniuk <victor.dubiniuk@gmail.com>2016-02-08 20:37:05 +0300
commit5910b82de1fe7c19fd47a4cd1bf77093f437264a (patch)
treed5b504eddb72cfa6dfffb90457bf6bf3dcd28ca3
parentb91bc80ea41c4827119acb57c10406826e6cd64c (diff)
downloadnextcloud-server-5910b82de1fe7c19fd47a4cd1bf77093f437264a.tar.gz
nextcloud-server-5910b82de1fe7c19fd47a4cd1bf77093f437264a.zip
Cut authors list. Declare a member variable
-rw-r--r--core/command/integrity/checkapp.php15
-rw-r--r--core/command/integrity/checkcore.php14
2 files changed, 11 insertions, 18 deletions
diff --git a/core/command/integrity/checkapp.php b/core/command/integrity/checkapp.php
index c61f8716dee..87b8eb47687 100644
--- a/core/command/integrity/checkapp.php
+++ b/core/command/integrity/checkapp.php
@@ -1,15 +1,6 @@
<?php
/**
- * @author Bart Visscher <bartv@thisnet.nl>
- * @author Björn Schießle <schiessle@owncloud.com>
- * @author Christian Kampka <christian@kampka.net>
- * @author Joas Schilling <nickvergessen@owncloud.com>
- * @author Lukas Reschke <lukas@owncloud.com>
- * @author Morris Jobke <hey@morrisjobke.de>
- * @author Robin McCorkell <robin@mccorkell.me.uk>
- * @author Thomas Müller <thomas.mueller@tmit.eu>
* @author Victor Dubiniuk <dubiniuk@owncloud.com>
- * @author Vincent Petry <pvince81@owncloud.com>
*
* @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 a1602b8c2ec..ac29937e2ed 100644
--- a/core/command/integrity/checkcore.php
+++ b/core/command/integrity/checkcore.php
@@ -1,15 +1,6 @@
<?php
/**
- * @author Bart Visscher <bartv@thisnet.nl>
- * @author Björn Schießle <schiessle@owncloud.com>
- * @author Christian Kampka <christian@kampka.net>
- * @author Joas Schilling <nickvergessen@owncloud.com>
- * @author Lukas Reschke <lukas@owncloud.com>
- * @author Morris Jobke <hey@morrisjobke.de>
- * @author Robin McCorkell <robin@mccorkell.me.uk>
- * @author Thomas Müller <thomas.mueller@tmit.eu>
* @author Victor Dubiniuk <dubiniuk@owncloud.com>
- * @author Vincent Petry <pvince81@owncloud.com>
*
* @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;