Static analysis cleanup.
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
This commit is contained in:
@ -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();
|
||||
|
Reference in New Issue
Block a user