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

@ -26,8 +26,8 @@ class CommandBackup extends Command
$output->writeln('Opening: '.$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());
}
$rclone = new Rclone\Rclone();
@ -38,8 +38,7 @@ class CommandBackup extends Command
$twig = new \Twig\Environment($loader);
$twig->addExtension(new Twig\AppExtension());
foreach($config['backup'] as $conf)
{
foreach ($config['backup'] as $conf) {
try {
$template['config'] = $conf;
$template['start'] = new \DateTime();