summaryrefslogtreecommitdiffstats
path: root/core/Command/Check.php
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2017-03-17 16:37:48 -0600
committerMorris Jobke <hey@morrisjobke.de>2017-03-19 15:53:49 -0600
commitedd55b0ea9c13273695bf95d913f4dfc03e08c95 (patch)
tree71bcb99c0d2b5fd16d97eadcc947e11488c23817 /core/Command/Check.php
parentc02527e41462133444881817b741f91ebf563b3b (diff)
downloadnextcloud-server-edd55b0ea9c13273695bf95d913f4dfc03e08c95.tar.gz
nextcloud-server-edd55b0ea9c13273695bf95d913f4dfc03e08c95.zip
Use SystemConfig instead of AllConfig for DB stuff
* preparation for followup PRs to clean up the DB bootstrapping Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Diffstat (limited to 'core/Command/Check.php')
-rw-r--r--core/Command/Check.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/core/Command/Check.php b/core/Command/Check.php
index 8ced96a91c3..16176a171a2 100644
--- a/core/Command/Check.php
+++ b/core/Command/Check.php
@@ -23,17 +23,17 @@
*/
namespace OC\Core\Command;
-use OCP\IConfig;
+use OC\SystemConfig;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
class Check extends Base {
/**
- * @var IConfig
+ * @var SystemConfig
*/
private $config;
- public function __construct(IConfig $config) {
+ public function __construct(SystemConfig $config) {
parent::__construct();
$this->config = $config;
}