1 | <?php |
||
8 | class ZonerSmsGatewayChannel |
||
9 | { |
||
10 | /** |
||
11 | * @var ZonerSmsGateway |
||
12 | */ |
||
13 | protected $gateway; |
||
14 | |||
15 | 4 | public function __construct(ZonerSmsGateway $gateway) |
|
19 | |||
20 | /** |
||
21 | * Send the given notification. |
||
22 | * |
||
23 | * @param mixed $notifiable |
||
24 | * @param Notification $notification |
||
25 | * |
||
26 | * @return tracking number |
||
27 | * @throws CouldNotSendNotification |
||
28 | */ |
||
29 | 4 | public function send($notifiable, Notification $notification) |
|
56 | } |
||
57 |