1 | <?php |
||
9 | class PlaySmsClient |
||
10 | { |
||
11 | private $client; |
||
12 | private $apiKey; |
||
13 | private $username; |
||
14 | |||
15 | public function __construct($baseUrl, $username, $apiKey, $options = []) |
||
24 | |||
25 | /** |
||
26 | * @param $mobileNumber |
||
27 | * @param $message |
||
28 | * @throws CouldNotSendNotification |
||
29 | */ |
||
30 | public function send($mobileNumber, $message) |
||
47 | } |
||
48 |