Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
48 | public function __construct( |
||
49 | Swift_Mailer $mailer, |
||
50 | SwiftMessageFactoryInterface $messageFactory, |
||
51 | $templateName, |
||
52 | $fromEmail, |
||
53 | $replayToEmail = null |
||
54 | ) { |
||
55 | $this->mailer = $mailer; |
||
56 | $this->messageFactory = $messageFactory; |
||
57 | $this->templateName = $templateName; |
||
58 | $this->fromEmail = $fromEmail; |
||
59 | $this->replayToEmail = $replayToEmail; |
||
60 | } |
||
77 |