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