|
|
|
|
@ -47,19 +47,16 @@ use Symfony\Component\Console\Input\InputOption; |
|
|
|
|
use Symfony\Component\Console\Output\OutputInterface; |
|
|
|
|
|
|
|
|
|
class Repair extends Command { |
|
|
|
|
protected \OC\Repair $repair; |
|
|
|
|
protected IConfig $config; |
|
|
|
|
private IEventDispatcher $dispatcher; |
|
|
|
|
private ProgressBar $progress; |
|
|
|
|
private OutputInterface $output; |
|
|
|
|
private IAppManager $appManager; |
|
|
|
|
protected bool $errored = false; |
|
|
|
|
|
|
|
|
|
public function __construct(\OC\Repair $repair, IConfig $config, IEventDispatcher $dispatcher, IAppManager $appManager) { |
|
|
|
|
$this->repair = $repair; |
|
|
|
|
$this->config = $config; |
|
|
|
|
$this->dispatcher = $dispatcher; |
|
|
|
|
$this->appManager = $appManager; |
|
|
|
|
public function __construct( |
|
|
|
|
protected \OC\Repair $repair, |
|
|
|
|
protected IConfig $config, |
|
|
|
|
private IEventDispatcher $dispatcher, |
|
|
|
|
private IAppManager $appManager, |
|
|
|
|
) { |
|
|
|
|
parent::__construct(); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|