CodeSniffer initial steps
This commit is contained in:
@ -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();
|
||||
|
Reference in New Issue
Block a user