Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
1 / 1 |
| EmailMessage | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |
100.00% |
1 / 1 |
| __construct | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
| 1 | <?php |
| 2 | |
| 3 | declare(strict_types=1); |
| 4 | |
| 5 | namespace App\Domain\Notification\Data; |
| 6 | |
| 7 | /** |
| 8 | * Immutable DTO representing an outbound email message. |
| 9 | */ |
| 10 | final readonly class EmailMessage |
| 11 | { |
| 12 | public function __construct( |
| 13 | public string $to, |
| 14 | public string $subject, |
| 15 | public string $bodyHtml, |
| 16 | public ?string $toName = null, |
| 17 | public ?string $bodyText = null, |
| 18 | public ?string $from = null, |
| 19 | public ?string $fromName = null, |
| 20 | ) {} |
| 21 | } |