| Total Complexity | 6 |
| Total Lines | 47 |
| Duplicated Lines | 0 % |
| Coverage | 82.61% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 11 | class WhatsAppChannel |
||
| 12 | { |
||
| 13 | /* |
||
| 14 | * HTTP WhatsApp Cloud API wrapper |
||
| 15 | */ |
||
| 16 | private WhatsAppCloudApi $whatsapp; |
||
| 17 | |||
| 18 | 4 | public function __construct(WhatsAppCloudApi $whatsapp) |
|
| 21 | } |
||
| 22 | |||
| 23 | /** |
||
| 24 | * Send the given notification. |
||
| 25 | */ |
||
| 26 | 4 | public function send($notifiable, Notification $notification): ?Response |
|
| 61 |