| 1 | <?php namespace Anomaly\UsersModule\User\Notification; |
||
| 6 | class TestNotification extends Notification |
||
| 7 | { |
||
| 8 | /** |
||
| 9 | * Get the notification's delivery channels. |
||
| 10 | * |
||
| 11 | * @param mixed $notifiable |
||
| 12 | * @return array |
||
| 13 | */ |
||
| 14 | public function via($notifiable) |
||
| 18 | |||
| 19 | /** |
||
| 20 | * Get the mail representation of the notification. |
||
| 21 | * |
||
| 22 | * @param mixed $notifiable |
||
| 23 | * @return \Illuminate\Notifications\Messages\MailMessage |
||
| 24 | */ |
||
| 25 | public function toMail($notifiable) |
||
| 34 | } |
||
| 35 |