1 | <?php |
||
8 | class FacebookChannel |
||
9 | { |
||
10 | /** |
||
11 | * @var Facebook |
||
12 | */ |
||
13 | private $fb; |
||
14 | |||
15 | public function __construct(Facebook $fb) |
||
19 | |||
20 | /** |
||
21 | * Send the given notification. |
||
22 | * |
||
23 | * @param mixed $notifiable |
||
24 | * @param \Illuminate\Notifications\Notification $notification |
||
25 | * |
||
26 | * @throws \NotificationChannels\Facebook\Exceptions\CouldNotSendNotification |
||
27 | */ |
||
28 | public function send($notifiable, Notification $notification) |
||
46 | } |
||
47 |