CodeSniffer initial steps

This commit is contained in:
2023-05-26 12:14:21 +00:00
parent 6294487276
commit acd209b351
8 changed files with 116 additions and 28 deletions

View File

@ -25,8 +25,8 @@ class CommandShow extends Command
$output->writeln('Reading from: '.$input->getArgument('config'));
try {
$config = Yaml::parseFile($input->getArgument('config'));
} catch (ParseException $exception) {
$output->writeln('Unable to parse the YAML string: '. $exception->getMessage());
} catch (ParseException $e) {
$output->writeln('Unable to parse the YAML string: '. $e->getMessage());
}
$table = new Table($output);
$table