| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 47 | public function __construct(Address $sender) |
||
| 48 | { |
||
| 49 | $this->sender = $sender; |
||
| 50 | $this->content = new Content(); |
||
| 51 | $this->recipients = new AddressContainer(); |
||
| 52 | $this->ccs = new AddressContainer(); |
||
| 53 | $this->bccs = new AddressContainer(); |
||
| 54 | $this->attachments = new AttachmentContainer(); |
||
| 55 | } |
||
| 56 | |||
| 105 | } |