| Total Complexity | 3 |
| Total Lines | 32 |
| Duplicated Lines | 0 % |
| Coverage | 92.31% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 18 | class ListEditHandler extends AbstractHandler |
||
| 19 | { |
||
| 20 | const API_ENDPOINT = '/rest/subscribers_list/update'; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @param string $listHash |
||
| 24 | * @param string $listName |
||
| 25 | * @param string $description |
||
| 26 | * @return null |
||
| 27 | */ |
||
| 28 | 21 | public function updateSubscriberList(string $listHash, string $listName, string $description = '') |
|
| 42 | } |
||
| 43 | |||
| 44 | /** |
||
| 45 | * @return string |
||
| 46 | */ |
||
| 47 | 7 | protected function getApiEndpoint(): string |
|
| 52 |