Passed
Branch dev5a (c41270)
by Ron
12:51
created

NewUserWelcome   A

Complexity

Total Complexity 3

Size/Duplication

Total Lines 41
Duplicated Lines 0 %

Test Coverage

Coverage 46.15%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 12
c 1
b 0
f 0
dl 0
loc 41
ccs 6
cts 13
cp 0.4615
rs 10
wmc 3

3 Methods

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

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

44
    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...
45
    {
46
        return (new MailMessage)
47
            ->greeting('Hello '.$this->user->full_name)
48
            ->line('A new '.config('app.name').' account has been created for you.')
49
            ->line('Your new username is:  **'.$this->user->username.'**')
50
            ->line('You can click the link below to finsh setting up your account.')
51
            ->action('Setup Account', url(route('initialize', $this->hash)));
52
    }
53
54
    /**
55
     * Get the array representation of the notification.
56
     *
57
     * @param  mixed  $notifiable
58
     * @return array
59
     */
60
    // public function toArray($notifiable)
61
    // {
62
    //     return [
63
    //         //
64
    //     ];
65
    // }
66
}
67