akubiczek /
applicake-backend
| 1 | <?php |
||||
| 2 | |||||
| 3 | namespace App\Notifications; |
||||
| 4 | |||||
| 5 | use Illuminate\Bus\Queueable; |
||||
| 6 | use Illuminate\Contracts\Queue\ShouldQueue; |
||||
| 7 | use Illuminate\Notifications\Messages\MailMessage; |
||||
| 8 | use Illuminate\Notifications\Notification; |
||||
| 9 | |||||
| 10 | class PasswordResetRequest extends Notification implements ShouldQueue |
||||
| 11 | { |
||||
| 12 | use Queueable; |
||||
| 13 | protected $token; |
||||
| 14 | |||||
| 15 | /** |
||||
| 16 | * Create a new notification instance. |
||||
| 17 | * |
||||
| 18 | * @return void |
||||
| 19 | */ |
||||
| 20 | public function __construct($token) |
||||
| 21 | { |
||||
| 22 | $this->token = $token; |
||||
| 23 | } |
||||
| 24 | |||||
| 25 | /** |
||||
| 26 | * Get the notification's delivery channels. |
||||
| 27 | * |
||||
| 28 | * @param mixed $notifiable |
||||
| 29 | * |
||||
| 30 | * @return array |
||||
| 31 | */ |
||||
| 32 | public function via($notifiable) |
||||
|
0 ignored issues
–
show
|
|||||
| 33 | { |
||||
| 34 | return ['mail']; |
||||
| 35 | } |
||||
| 36 | |||||
| 37 | /** |
||||
| 38 | * Get the mail representation of the notification. |
||||
| 39 | * |
||||
| 40 | * @param mixed $notifiable |
||||
| 41 | * |
||||
| 42 | * @return \Illuminate\Notifications\Messages\MailMessage |
||||
| 43 | */ |
||||
| 44 | public function toMail($notifiable) |
||||
|
0 ignored issues
–
show
The parameter
$notifiable is not used and could be removed.
(
Ignorable by Annotation
)
If this is a false-positive, you can also ignore this issue in your code via the
This check looks for parameters that have been defined for a function or method, but which are not used in the method body. Loading history...
|
|||||
| 45 | { |
||||
| 46 | $url = url(config('app.b_url').'/password-reset/'.$this->token); |
||||
| 47 | |||||
| 48 | return (new MailMessage()) |
||||
| 49 | ->line('You are receiving this email because we received a password reset request for your account.') |
||||
| 50 | ->action('Reset Password', url($url)) |
||||
| 51 | ->line('If you did not request a password reset, no further action is required.'); |
||||
| 52 | } |
||||
| 53 | |||||
| 54 | /** |
||||
| 55 | * Get the array representation of the notification. |
||||
| 56 | * |
||||
| 57 | * @param mixed $notifiable |
||||
| 58 | * |
||||
| 59 | * @return array |
||||
| 60 | */ |
||||
| 61 | public function toArray($notifiable) |
||||
|
0 ignored issues
–
show
The parameter
$notifiable is not used and could be removed.
(
Ignorable by Annotation
)
If this is a false-positive, you can also ignore this issue in your code via the
This check looks for parameters that have been defined for a function or method, but which are not used in the method body. Loading history...
|
|||||
| 62 | { |
||||
| 63 | return [ |
||||
| 64 | // |
||||
| 65 | ]; |
||||
| 66 | } |
||||
| 67 | } |
||||
| 68 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.