SendActivationEmail::toArray()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 1
c 1
b 0
f 0
nc 1
nop 1
dl 0
loc 3
rs 10
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
Unused Code introduced by
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
Unused Code introduced by
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
        $message = new MailMessage();
51
        $message->subject(trans('emails.activationSubject'))
0 ignored issues
show
Bug introduced by
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

51
        $message->subject(/** @scrutinizer ignore-type */ trans('emails.activationSubject'))
Loading history...
52
            ->greeting(trans('emails.activationGreeting'))
0 ignored issues
show
Bug introduced by
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

52
            ->greeting(/** @scrutinizer ignore-type */ trans('emails.activationGreeting'))
Loading history...
53
            ->line(trans('emails.activationMessage'))
54
            ->action(trans('emails.activationButton'), route('authenticated.activate', ['token' => $this->token]))
0 ignored issues
show
Bug introduced by
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

54
            ->action(/** @scrutinizer ignore-type */ trans('emails.activationButton'), route('authenticated.activate', ['token' => $this->token]))
Loading history...
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
Unused Code introduced by
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

67
    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...
68
    {
69
        return [
70
            //
71
        ];
72
    }
73
}
74