Issues (172)

app/Notifications/SendActivationEmail.php (6 issues)

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
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

36
    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...
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 ignore-unused  annotation

48
    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...
49
    {
50
        $baseUrl = env('APP_URL');
51
        $url = $baseUrl.'/verify?token='.$this->token;
52
        $message = new MailMessage();
53
        $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 ignore-type  annotation

53
        $message->subject(/** @scrutinizer ignore-type */ trans('emails.activationSubject'))
Loading history...
54
            ->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 ignore-type  annotation

54
            ->greeting(/** @scrutinizer ignore-type */ trans('emails.activationGreeting'))
Loading history...
55
            ->line(trans('emails.activationMessage'))
56
            ->action(trans('emails.activationButton'), $url)
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 ignore-type  annotation

56
            ->action(/** @scrutinizer ignore-type */ trans('emails.activationButton'), $url)
Loading history...
57
            ->line($this->token)
58
            ->line(trans('emails.activationThanks'));
59
60
        return $message;
61
    }
62
63
    /**
64
     * Get the array representation of the notification.
65
     *
66
     * @param mixed $notifiable
67
     *
68
     * @return array
69
     */
70
    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

70
    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...
71
    {
72
        return [
73
            //
74
        ];
75
    }
76
}
77