@@ -48,6 +48,10 @@ |
||
48 | 48 | } |
49 | 49 | } |
50 | 50 | |
51 | + /** |
|
52 | + * @param Notification $notification |
|
53 | + * @param string $message |
|
54 | + */ |
|
51 | 55 | protected function fireFailedEvent($notifiable, $notification, $message) |
52 | 56 | { |
53 | 57 | $this->events->fire( |
@@ -3,8 +3,8 @@ |
||
3 | 3 | namespace NotificationChannels\Pushover; |
4 | 4 | |
5 | 5 | use Illuminate\Contracts\Events\Dispatcher; |
6 | -use Illuminate\Notifications\Notification; |
|
7 | 6 | use Illuminate\Notifications\Events\NotificationFailed; |
7 | +use Illuminate\Notifications\Notification; |
|
8 | 8 | use NotificationChannels\Pushover\Exceptions\ServiceCommunicationError; |
9 | 9 | |
10 | 10 | class PushoverChannel |