| 1 | <?php |
||
| 5 | class ResetPassword extends MailNotification |
||
| 6 | { |
||
| 7 | /** |
||
| 8 | * The password reset token. |
||
| 9 | * |
||
| 10 | * @var string |
||
| 11 | */ |
||
| 12 | public $token; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * Create a notification instance. |
||
| 16 | * |
||
| 17 | * @param string $token |
||
| 18 | */ |
||
| 19 | public function __construct($token) |
||
| 23 | |||
| 24 | /** |
||
| 25 | * Build the mail representation of the notification. |
||
| 26 | * |
||
| 27 | * @return \Illuminate\Notifications\Messages\MailMessage |
||
| 28 | */ |
||
| 29 | public function toMail() |
||
| 37 | } |
||
| 38 |