diff options
Diffstat (limited to 'core/Command/Maintenance/Install.php')
-rw-r--r-- | core/Command/Maintenance/Install.php | 6 |
1 files changed, 3 insertions, 3 deletions
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; } |