From ede8d4fdcb899af82221cc79032852687856df3c Mon Sep 17 00:00:00 2001 From: Simon Vieille Date: Fri, 20 Oct 2023 09:45:58 +0200 Subject: [PATCH] remove unsed twig in mail notifier --- src/core/Notification/MailNotifier.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/Notification/MailNotifier.php b/src/core/Notification/MailNotifier.php index 1e1a637..397d7d9 100644 --- a/src/core/Notification/MailNotifier.php +++ b/src/core/Notification/MailNotifier.php @@ -21,7 +21,7 @@ class MailNotifier protected ?string $from = null; protected ?string $replyTo = null; - public function __construct(protected TwigEnvironment $twig, protected MailerInterface $mailer) + public function __construct(protected MailerInterface $mailer) { }