1 | <?php |
||
9 | class PagerDutyChannel |
||
10 | { |
||
11 | /** |
||
12 | * @var Client |
||
13 | */ |
||
14 | protected $client; |
||
15 | |||
16 | 12 | public function __construct(Client $client) |
|
20 | |||
21 | /** |
||
22 | * Send the given notification. |
||
23 | * |
||
24 | * @param mixed $notifiable |
||
25 | * @param \Illuminate\Notifications\Notification $notification |
||
26 | * |
||
27 | * @throws \NotificationChannels\PagerDuty\Exceptions\CouldNotSendNotification |
||
28 | */ |
||
29 | 12 | public function send($notifiable, Notification $notification) |
|
56 | } |
||
57 |