1 | <?php |
||
12 | class EventCreatedListener |
||
13 | { |
||
14 | /** |
||
15 | * @var AzineMailgunMailerService |
||
16 | */ |
||
17 | private $mailer; |
||
18 | |||
19 | /** |
||
20 | * @var bool |
||
21 | */ |
||
22 | private $sendNotifications; |
||
23 | |||
24 | /** |
||
25 | * EventCreatedListener constructor. |
||
26 | * |
||
27 | * @param AzineMailgunMailerService $mailer |
||
28 | * @param bool $sendNotifications |
||
29 | */ |
||
30 | public function __construct(AzineMailgunMailerService $mailer, $sendNotifications) |
||
35 | |||
36 | /** |
||
37 | * @param MailgunWebhookEvent $event |
||
38 | */ |
||
39 | public function onEventCreated(MailgunWebhookEvent $event) |
||
48 | } |