| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 46 | public function __construct(array $recipients, array $sender, string $subject, string $body, array $attachments = []) |
||
| 47 | { |
||
| 48 | $this->recipients = $recipients; |
||
| 49 | $this->subject = $subject; |
||
| 50 | $this->sender = $sender; |
||
| 51 | $this->body = $body; |
||
| 52 | $this->attachments = $attachments; |
||
| 53 | } |
||
| 54 | |||
| 103 |