9 use Symfony\Component\Console\Input\InputInterface;
10 use Symfony\Component\Console\Output\OutputInterface;
30 parent::__construct();
31 $this->commandList = $commandList;
42 $this->setName(
'troubleshooting:check-all')
43 ->setDescription(
'Perform all available checks.');
56 foreach ($this->commandList as $command) {
57 $command->execute($input,
$output);
execute(InputInterface $input, OutputInterface $output)
__construct( $commandList)