Total Complexity | 2 |
Total Lines | 20 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
23 | class TestEventListener { |
||
24 | |||
25 | /** |
||
26 | * On delivery report callback. |
||
27 | * |
||
28 | * @param DeliveryReportCallbackEvent $event The event. |
||
29 | * @return DeliveryReportCallbackEvent Returns the event. |
||
30 | */ |
||
31 | public function onDeliveryReportCallback(DeliveryReportCallbackEvent $event): DeliveryReportCallbackEvent { |
||
33 | } |
||
34 | |||
35 | /** |
||
36 | * On SMS reply callback. |
||
37 | * |
||
38 | * @param SmsReplyCallbackEvent $event The event. |
||
39 | * @return SmsReplyCallbackEvent Returns the event. |
||
40 | */ |
||
41 | public function onSmsReplyCallback(SmsReplyCallbackEvent $event): SmsReplyCallbackEvent { |
||
45 |