Static code analysis.

This commit is contained in:
2023-05-31 09:00:20 +00:00
parent 4c8f71d9d8
commit 19f27e6d0c
10 changed files with 1798 additions and 43 deletions

View File

@ -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;
}
}