Conditions | 1 |
Paths | 1 |
Total Lines | 14 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 2 |
1 | <?php |
||
35 | public function __construct( |
||
36 | string $email, |
||
37 | string $listId, |
||
38 | string $language, |
||
39 | array $mergeFields, |
||
40 | array $interests, |
||
41 | bool $hasDoubleOptin |
||
42 | ) { |
||
43 | $this->email = $email; |
||
44 | $this->listId = $listId; |
||
45 | $this->language = $language; |
||
46 | $this->mergeFields = $mergeFields; |
||
47 | $this->interests = $interests; |
||
48 | $this->hasDoubleOptin = $hasDoubleOptin; |
||
49 | } |
||
81 |