| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 20 | public function __construct(string $id, string $providerId, string $name, string $address, string $subjectKeyword = null) |
||
| 21 | { |
||
| 22 | $this->id = $id; |
||
| 23 | $this->providerId = $providerId; |
||
| 24 | $this->address = $address; |
||
| 25 | $this->from = sprintf('%s <%s>', $name, $address); |
||
| 26 | $this->subjectKeyword = $subjectKeyword; |
||
| 27 | } |
||
| 69 |