| 1 | <?php |
||
| 12 | class ContactCreator |
||
| 13 | { |
||
| 14 | protected $client; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * @param Client $client |
||
| 18 | */ |
||
| 19 | 3 | public function __construct(Client $client) |
|
| 23 | |||
| 24 | /** |
||
| 25 | * @param string $listName |
||
| 26 | * @param string $contact |
||
| 27 | * @param array $parameters |
||
| 28 | */ |
||
| 29 | 1 | public function create($listName, $contact, array $parameters = []) |
|
| 57 | |||
| 58 | /** |
||
| 59 | * @param int $contactListId |
||
| 60 | * @param string $contact |
||
| 61 | */ |
||
| 62 | 1 | public function addToList($contactListId, $contact) |
|
| 74 | } |
||
| 75 |