| 1 | <?php |
||
| 11 | class HangoutsChatChannel |
||
| 12 | { |
||
| 13 | /** @var Client */ |
||
| 14 | protected $client; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * @param Client $client |
||
| 18 | */ |
||
| 19 | 1 | public function __construct(Client $client) |
|
| 23 | |||
| 24 | /** |
||
| 25 | * Send the given notification. |
||
| 26 | * |
||
| 27 | * @param mixed $notifiable |
||
| 28 | * @param Notification $notification |
||
| 29 | * |
||
| 30 | * @return ResponseInterface|void |
||
| 31 | * |
||
| 32 | * @throws CouldNotSendNotification |
||
| 33 | */ |
||
| 34 | 1 | public function send($notifiable, Notification $notification) |
|
| 55 | } |
||
| 56 |