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