AbstractNotificationService.php
1 year ago
AbstractWhatsAppNotificationService.php
2 years ago
ApplicationNotificationService.php
1 year ago
AppointmentNotificationService.php
1 year ago
BasicWhatsAppNotificationService.php
2 years ago
EmailNotificationService.php
1 year ago
NotificationHelperService.php
4 years ago
SMSAPIService.php
2 years ago
SMSNotificationService.php
1 year ago
BasicWhatsAppNotificationService.php
23 lines
| 1 | <?php |
| 2 | /** |
| 3 | * @copyright © TMS-Plugins. All rights reserved. |
| 4 | * @licence See LICENCE.md for license details. |
| 5 | */ |
| 6 | |
| 7 | namespace AmeliaBooking\Application\Services\Notification; |
| 8 | |
| 9 | /** |
| 10 | * Class BasicWhatsAppNotificationService |
| 11 | * |
| 12 | * @package AmeliaBooking\Application\Services\Notification |
| 13 | */ |
| 14 | class BasicWhatsAppNotificationService extends AbstractWhatsAppNotificationService |
| 15 | { |
| 16 | /** |
| 17 | * @return void |
| 18 | */ |
| 19 | public function sendPreparedNotifications() |
| 20 | { |
| 21 | } |
| 22 | } |
| 23 |