This commit is contained in:
@ -8,11 +8,10 @@ use Symfony\Component\Console\Input\InputInterface;
|
||||
use Symfony\Component\Console\Input\InputArgument;
|
||||
use Symfony\Component\Console\Output\OutputInterface;
|
||||
use Symfony\Component\Console\Style\SymfonyStyle;
|
||||
use Twig\Environment;
|
||||
use Twig\Loader\ArrayLoader;
|
||||
use DateTime;
|
||||
use App\Template\Twig;
|
||||
use App\Notification\Notification;
|
||||
use App\Rclone\Rclone;
|
||||
use DateTime;
|
||||
|
||||
#[AsCommand(
|
||||
name: 'backup',
|
||||
@ -47,9 +46,7 @@ class CommandBackup extends Command
|
||||
$notification = new Notification();
|
||||
$notification->loadMany($app->getConfig()['notification']);
|
||||
|
||||
$loader = new ArrayLoader($app->getConfig()['templates']);
|
||||
$twig = new Environment($loader);
|
||||
$twig->addExtension(new Twig\AppExtension());
|
||||
$render = new Twig($app->getConfig()['templates']);
|
||||
|
||||
foreach ($sio->progressIterate($app->getConfig()['backup']) as $conf) {
|
||||
$title = $conf['title'];
|
||||
@ -66,7 +63,7 @@ class CommandBackup extends Command
|
||||
$template['destination_size_after'] = $rclone->getSize($conf['destination']);
|
||||
$template['end'] = new DateTime();
|
||||
|
||||
$message = $twig->render('notify', $template);
|
||||
$message = $render->render('notify', $template);
|
||||
} catch (\Exception $e) {
|
||||
$message = $e->getMessage();
|
||||
}
|
||||
|
Reference in New Issue
Block a user