diff options
Diffstat (limited to 'core/Command')
-rw-r--r-- | core/Command/Check.php | 6 | ||||
-rw-r--r-- | core/Command/Maintenance/Install.php | 6 |
2 files changed, 6 insertions, 6 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; } diff --git a/core/Command/Maintenance/Install.php b/core/Command/Maintenance/Install.php index 4b76a1f608c..86180489fa4 100644 --- a/core/Command/Maintenance/Install.php +++ b/core/Command/Maintenance/Install.php @@ -29,7 +29,7 @@ namespace OC\Core\Command\Maintenance; use InvalidArgumentException; use OC\Setup; -use OCP\IConfig; +use OC\SystemConfig; use Symfony\Component\Console\Command\Command; use Symfony\Component\Console\Helper\QuestionHelper; use Symfony\Component\Console\Input\InputInterface; @@ -40,11 +40,11 @@ use Symfony\Component\Console\Question\Question; class Install extends Command { /** - * @var IConfig + * @var SystemConfig */ private $config; - public function __construct(IConfig $config) { + public function __construct(SystemConfig $config) { parent::__construct(); $this->config = $config; } |