Total Complexity | 2 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
8 | trait InMailMarketing |
||
9 | { |
||
10 | public function mailMarketingMemberData(): array |
||
11 | { |
||
12 | return $this->only([ |
||
|
|||
13 | 'email', |
||
14 | 'first_name', |
||
15 | 'last_name', |
||
16 | 'phone', |
||
17 | ]); |
||
18 | } |
||
19 | |||
20 | public function updateMemberInMailMarketingList($listId, bool $isAdd = true, array $tags = []): PendingDispatch |
||
27 | ); |
||
28 | } |
||
30 |