| 1 | <?php |
||
| 5 | class ConfirmEmail extends MailNotification |
||
| 6 | { |
||
| 7 | public $token; |
||
| 8 | |||
| 9 | /** |
||
| 10 | * Create a new notification instance. |
||
| 11 | * |
||
| 12 | * @param string $token |
||
| 13 | */ |
||
| 14 | public function __construct($token) |
||
| 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 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.