PHP Class App\Notifications\Auth\ResetPasswordNotification

Inheritance: extends Illuminate\Notifications\Notification, implements Illuminate\Contracts\Queue\ShouldQueue, use trait Illuminate\Bus\Queueable
Show file Open project: ant-vel/antVel

Protected Properties

Property Type Description
$token null The reset password token.

Public Methods

Method Description
__construct ( $token ) : void Create a new notification instance.
toMail ( mixed $notifiable ) : Illuminate\Notifications\Messages\MailMessage Get the mail representation of the notification.
via ( mixed $notifiable ) : array Get the notification's delivery channels.

Method Details

__construct() public method

Create a new notification instance.
public __construct ( $token ) : void
return void

toMail() public method

Get the mail representation of the notification.
public toMail ( mixed $notifiable ) : Illuminate\Notifications\Messages\MailMessage
$notifiable mixed
return Illuminate\Notifications\Messages\MailMessage

via() public method

Get the notification's delivery channels.
public via ( mixed $notifiable ) : array
$notifiable mixed
return array

Property Details

$token protected property

The reset password token.
protected null $token
return null