Static code analysis.
This commit is contained in:
@ -5,7 +5,7 @@ use Symfony\Component\Console\Command\Command;
|
||||
use Symfony\Component\Console\Input\InputInterface;
|
||||
use Symfony\Component\Console\Input\InputArgument;
|
||||
use Symfony\Component\Console\Output\OutputInterface;
|
||||
use Symfony\Component\Console\Helper\Table;
|
||||
use Symfony\Component\Console\Style\SymfonyStyle;
|
||||
|
||||
use Symfony\Component\Yaml\Yaml;
|
||||
use Symfony\Component\Yaml\Exception\ParseException;
|
||||
@ -22,20 +22,20 @@ class CommandShow extends Command
|
||||
|
||||
protected function execute(InputInterface $input, OutputInterface $output): int
|
||||
{
|
||||
$output->writeln('Reading from: '.$input->getArgument('config'));
|
||||
$io = new SymfonyStyle($input, $output);
|
||||
$io->title('List backup entities');
|
||||
|
||||
$io->note('Reading from: '.$input->getArgument('config'));
|
||||
try {
|
||||
$config = Yaml::parseFile($input->getArgument('config'));
|
||||
} catch (ParseException $e) {
|
||||
$output->writeln('Unable to parse the YAML string: '. $e->getMessage());
|
||||
$io->error('Unable to parse the YAML string: '. $e->getMessage());
|
||||
return Command::FAILURE;
|
||||
}
|
||||
$table = new Table($output);
|
||||
$table
|
||||
->setHeaders(['Description', 'Source', 'Destination'])
|
||||
->setRows($config['backup']);
|
||||
;
|
||||
$table->render();
|
||||
|
||||
$io->table(['Description', 'Source', 'Destination'], $config['backup']);
|
||||
|
||||
$io->success("Done");
|
||||
return Command::SUCCESS;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user