1 | <?php |
||
10 | class ContactListCreator |
||
11 | { |
||
12 | protected $contactCreator; |
||
13 | protected $contactListConvertor; |
||
14 | |||
15 | /** |
||
16 | * @param ContactListConvertor $contactListConvertor |
||
17 | * @param ContactCreator $contactCreator |
||
18 | */ |
||
19 | public function __construct( |
||
26 | |||
27 | /** |
||
28 | * @param string $name |
||
29 | * @param string $contact |
||
30 | * @param array $parameters |
||
31 | * |
||
32 | * @throws \Dekalee\MailjetBundle\Exception\ContactListNotCreated |
||
33 | */ |
||
34 | public function addContactToList($name, $contact, array $parameters = []) |
||
40 | } |
||
41 |