Issues (59)

app/Notifications/PasswordResetRequest.php (3 issues)

1
<?php
2
3
namespace App\Notifications;
4
5
use Illuminate\Bus\Queueable;
6
use Illuminate\Notifications\Notification;
7
use Illuminate\Contracts\Queue\ShouldQueue;
8
use Illuminate\Notifications\Messages\MailMessage;
9
10
class PasswordResetRequest extends Notification
11
{
12
    use Queueable;
13
14
    protected $token;
15
16
    /**
17
     * Create a new notification instance.
18
     *
19
     * @return void
20
     */
21
    public function __construct($token)
22
    {
23
        $this->token = $token;
24
    }
25
26
    /**
27
     * Get the notification's delivery channels.
28
     *
29
     * @param  mixed  $notifiable
30
     * @return array
31
     */
32
    public function via($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 ignore-unused  annotation

32
    public function via(/** @scrutinizer ignore-unused */ $notifiable)

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...
33
    {
34
        return ['mail'];
35
    }
36
37
    /**
38
     * Get the mail representation of the notification.
39
     *
40
     * @param  mixed  $notifiable
41
     * @return \Illuminate\Notifications\Messages\MailMessage
42
     */
43
    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 ignore-unused  annotation

43
    public function toMail(/** @scrutinizer ignore-unused */ $notifiable)

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...
44
    {
45
        $url = config('app.url_frontend_react') . "/password/reset/{$this->token}";
46
        
47
        return (new MailMessage)
48
                    ->line('Você está recebendo este e-mail porque recebemos uma solicitação de redefinição de senha para sua conta.')
49
                    ->action('Resetar Senha', $url)
50
                    ->line('Se você não solicitou uma redefinição de senha, nenhuma ação adicional será necessária.');
51
    }
52
53
    /**
54
     * Get the array representation of the notification.
55
     *
56
     * @param  mixed  $notifiable
57
     * @return array
58
     */
59
    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 ignore-unused  annotation

59
    public function toArray(/** @scrutinizer ignore-unused */ $notifiable)

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...
60
    {
61
        return [
62
            //
63
        ];
64
    }
65
}
66