Fixed code style.

This commit is contained in:
Jan Böhmer 2020-01-04 20:24:09 +01:00
parent 1aed1d1d26
commit 9a7223a301
142 changed files with 534 additions and 716 deletions

View file

@ -21,7 +21,6 @@
namespace App\EventSubscriber;
use Symfony\Component\EventDispatcher\EventSubscriberInterface;
use Symfony\Component\Mailer\Event\MessageEvent;
use Symfony\Component\Mime\Address;
@ -34,7 +33,7 @@ class MailFromListener implements EventSubscriberInterface
public function __construct(string $email, string $name)
{
$this->email = $email;
$this->email = $email;
$this->name = $name;
}
@ -55,4 +54,4 @@ class MailFromListener implements EventSubscriberInterface
MessageEvent::class => ['onMessage'],
];
}
}
}