SendGoodbyeEmail   A
last analyzed

Complexity

Total Complexity 4

Size/Duplication

Total Lines 55
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 1
Metric Value
eloc 13
c 1
b 0
f 1
dl 0
loc 55
rs 10
wmc 4

4 Methods

Rating   Name   Duplication   Size   Complexity  
A via() 0 3 1
A __construct() 0 3 1
A toArray() 0 3 1
A toMail() 0 10 1
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 SendGoodbyeEmail extends Notification implements ShouldQueue
11
{
12
    use Queueable;
13
14
    protected $token;
15
16
    /**
17
     * Create a new notification instance.
18
     */
19
    public function __construct($token)
20
    {
21
        $this->token = $token;
22
    }
23
24
    /**
25
     * Get the notification's delivery channels.
26
     *
27
     * @param mixed $notifiable
28
     *
29
     * @return array
30
     */
31
    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

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

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
        $message = new MailMessage();
46
        $message->subject(trans('emails.goodbyeSubject'))
0 ignored issues
show
Bug introduced by
It seems like trans('emails.goodbyeSubject') 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

46
        $message->subject(/** @scrutinizer ignore-type */ trans('emails.goodbyeSubject'))
Loading history...
47
            ->greeting(trans('emails.goodbyeGreeting', ['username' => \Auth::User()->name]))
0 ignored issues
show
Bug introduced by
Accessing name on the interface Illuminate\Contracts\Auth\Authenticatable suggest that you code against a concrete implementation. How about adding an instanceof check?
Loading history...
Bug introduced by
It seems like trans('emails.goodbyeGre...=> Auth::User()->name)) 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

47
            ->greeting(/** @scrutinizer ignore-type */ trans('emails.goodbyeGreeting', ['username' => \Auth::User()->name]))
Loading history...
48
            ->line(trans('emails.goodbyeMessage'))
49
            ->action(trans('emails.goodbyeButton'), route('user.reactivate', ['token' => $this->token]))
0 ignored issues
show
Bug introduced by
It seems like trans('emails.goodbyeButton') 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

49
            ->action(/** @scrutinizer ignore-type */ trans('emails.goodbyeButton'), route('user.reactivate', ['token' => $this->token]))
Loading history...
50
            ->line(trans('emails.goodbyeThanks'));
51
52
        return $message;
53
    }
54
55
    /**
56
     * Get the array representation of the notification.
57
     *
58
     * @param mixed $notifiable
59
     *
60
     * @return array
61
     */
62
    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

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