Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
31 | 1 | public function unsubscribe($listName, $contact) |
|
32 | { |
||
33 | 1 | $contactListId = $this->convertor->convert($listName); |
|
34 | 1 | $this->client->post(Resources::$ContactslistManagecontact, ['id' => $contactListId, 'body' => [ |
|
35 | 1 | 'Action' => 'unsub', |
|
36 | 1 | 'Email' => $contact, |
|
37 | 1 | ]]); |
|
38 | 1 | } |
|
39 | } |
||
40 |