chore(Mailer): remove no-op local variable initilization

The IDE hinted the value is immediately overwritten.

Signed-off-by: Thomas Lehmann <t.lehmann@strato.de>
This commit is contained in:
Thomas Lehmann 2024-11-07 11:05:11 +01:00 committed by Thomas Lehmann
parent 46d8a7333b
commit 40211f3d07

View file

@ -255,8 +255,6 @@ class Mailer implements IMailer {
return $this->instance;
}
$transport = null;
switch ($this->config->getSystemValueString('mail_smtpmode', 'smtp')) {
case 'sendmail':
$transport = $this->getSendMailInstance();