Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
23 | 1 | public function __construct( |
|
24 | ?string $subject, |
||
25 | ?string $htmlTemplate, |
||
26 | ?string $textTemplate, |
||
27 | Participants $participants |
||
28 | ) { |
||
29 | 1 | $this->subject = $subject; |
|
30 | 1 | $this->htmlTemplate = $htmlTemplate; |
|
31 | 1 | $this->textTemplate = $textTemplate; |
|
32 | 1 | $this->participants = $participants; |
|
33 | 1 | } |
|
70 |