| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 43 | public function __construct( |
||
| 44 | Swift_Mailer $mailer, |
||
| 45 | SwiftMessageFactoryInterface $messageFactory, |
||
| 46 | string $templateName, |
||
| 47 | string $fromEmail, |
||
| 48 | ?string $replayToEmail = null |
||
| 49 | ) { |
||
| 50 | $this->mailer = $mailer; |
||
| 51 | $this->messageFactory = $messageFactory; |
||
| 52 | $this->templateName = $templateName; |
||
| 53 | $this->fromEmail = $fromEmail; |
||
| 54 | $this->replayToEmail = $replayToEmail; |
||
| 55 | } |
||
| 68 |