summaryrefslogtreecommitdiffstats
path: root/core/Command/Check.php
diff options
context:
space:
mode:
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;
}