Static analysis cleanup.
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
2023-06-13 08:15:29 +00:00
parent 0f3bbf1f47
commit 4ffac17b62
6 changed files with 47 additions and 22 deletions

View File

@ -54,7 +54,6 @@ class CommandBackup extends Command
foreach ($sio->progressIterate($app->getConfig()['backup']) as $conf) {
$title = $conf['title'];
$message = "";
try {
$template = array();
$template['config'] = $conf;
@ -63,7 +62,11 @@ class CommandBackup extends Command
$template['rclone_version'] = $rclone->getVersion();
$template['destination_size_before'] = $rclone->getSize($conf['destination']);
$template['stdout'] = $rclone->copy($conf['source'], $conf['destination'], $app->getConfig()['rclone']['options']);
$template['stdout'] = $rclone->copy(
$conf['source'],
$conf['destination'],
$app->getConfig()['rclone']['options']
);
$template['destination_size_after'] = $rclone->getSize($conf['destination']);
$template['end'] = new DateTime();