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 SendActivationEmail extends Notification implements ShouldQueue |
||||
11 | { |
||||
12 | use Queueable; |
||||
13 | |||||
14 | protected $token; |
||||
15 | |||||
16 | /** |
||||
17 | * Create a new notification instance. |
||||
18 | * |
||||
19 | * SendActivationEmail constructor. |
||||
20 | * |
||||
21 | * @param $token |
||||
22 | */ |
||||
23 | public function __construct($token) |
||||
24 | { |
||||
25 | $this->token = $token; |
||||
26 | $this->onQueue('social'); |
||||
27 | } |
||||
28 | |||||
29 | /** |
||||
30 | * Get the notification's delivery channels. |
||||
31 | * |
||||
32 | * @param mixed $notifiable |
||||
33 | * |
||||
34 | * @return array |
||||
35 | */ |
||||
36 | public function via($notifiable) |
||||
0 ignored issues
–
show
|
|||||
37 | { |
||||
38 | return ['mail']; |
||||
39 | } |
||||
40 | |||||
41 | /** |
||||
42 | * Get the mail representation of the notification. |
||||
43 | * |
||||
44 | * @param mixed $notifiable |
||||
45 | * |
||||
46 | * @return \Illuminate\Notifications\Messages\MailMessage |
||||
47 | */ |
||||
48 | 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. ![]() |
|||||
49 | { |
||||
50 | $message = new MailMessage(); |
||||
51 | $message->subject(trans('emails.activationSubject')) |
||||
0 ignored issues
–
show
It seems like
trans('emails.activationSubject') can also be of type array and array ; however, parameter $subject of Illuminate\Notifications...impleMessage::subject() does only seem to accept string , maybe add an additional type check?
(
Ignorable by Annotation
)
If this is a false-positive, you can also ignore this issue in your code via the
![]() |
|||||
52 | ->greeting(trans('emails.activationGreeting')) |
||||
0 ignored issues
–
show
It seems like
trans('emails.activationGreeting') can also be of type array and array ; however, parameter $greeting of Illuminate\Notifications...mpleMessage::greeting() does only seem to accept string , maybe add an additional type check?
(
Ignorable by Annotation
)
If this is a false-positive, you can also ignore this issue in your code via the
![]() |
|||||
53 | ->line(trans('emails.activationMessage')) |
||||
54 | ->action(trans('emails.activationButton'), route('authenticated.activate', ['token' => $this->token])) |
||||
0 ignored issues
–
show
It seems like
trans('emails.activationButton') can also be of type array and array ; however, parameter $text of Illuminate\Notifications...SimpleMessage::action() does only seem to accept string , maybe add an additional type check?
(
Ignorable by Annotation
)
If this is a false-positive, you can also ignore this issue in your code via the
![]() |
|||||
55 | ->line(trans('emails.activationThanks')); |
||||
56 | |||||
57 | return $message; |
||||
58 | } |
||||
59 | |||||
60 | /** |
||||
61 | * Get the array representation of the notification. |
||||
62 | * |
||||
63 | * @param mixed $notifiable |
||||
64 | * |
||||
65 | * @return array |
||||
66 | */ |
||||
67 | 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. ![]() |
|||||
68 | { |
||||
69 | return [ |
||||
70 | // |
||||
71 | ]; |
||||
72 | } |
||||
73 | } |
||||
74 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.