Total Complexity | 3 |
Total Lines | 38 |
Duplicated Lines | 0 % |
Coverage | 92.86% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
18 | class SubscriberEditHandler extends AbstractHandler |
||
19 | { |
||
20 | const API_ENDPOINT = '/rest/subscriber/edit'; |
||
21 | |||
22 | /** |
||
23 | * @param string $email |
||
24 | * @param string $listHash |
||
25 | * @param int $subscriberStatus |
||
26 | * @param array $customFieldsWithValues |
||
27 | * @return null |
||
28 | */ |
||
29 | 28 | public function editSubscriber( |
|
48 | } |
||
49 | |||
50 | /** |
||
51 | * @return string |
||
52 | */ |
||
53 | 7 | protected function getApiEndpoint(): string |
|
58 |