1 | <?php |
||
7 | class WhatsappNotify |
||
8 | { |
||
9 | private $client; |
||
10 | public function __construct() |
||
14 | |||
15 | /** |
||
16 | * send push message to whatsapp |
||
17 | * @param string $to |
||
18 | * @param string $content |
||
19 | * @return bool |
||
20 | * @throws \Symfony\Contracts\HttpClient\Exception\TransportExceptionInterface |
||
21 | */ |
||
22 | public function send(string $to , string $content) |
||
36 | } |
||
37 |