Completed
Push — master ( 6e8adf...c24137 )
by
unknown
27s
created

InvoicePaid::via()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 0
Metric Value
cc 1
eloc 1
nc 1
nop 1
dl 0
loc 3
ccs 0
cts 2
cp 0
crap 2
rs 10
c 0
b 0
f 0
1
<?php
2
3
namespace App\Notifications;
4
5
use Illuminate\Bus\Queueable;
6
use Illuminate\Notifications\Notification;
7
use Illuminate\Contracts\Queue\ShouldQueue;
8
use Illuminate\Notifications\Messages\NexmoMessage;
9
10
class InvoicePaid extends Notification
11
{
12
    use Queueable;
13
14
    /**
15
     * Create a new notification instance.
16
     *
17
     * @return void
18
     */
19
    public function __construct()
20
    {
21
        //
22
    }
23
24
    /**
25
     * Get the notification's delivery channels.
26
     *
27
     * @param  mixed  $notifiable
28
     * @return string[]
29
     */
30
    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

30
    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...
31
    {
32
        return [ 'nexmo' ];
33
    }
34
35
    /**
36
     * Get the SMS representation of the notification.
37
     *
38
     * @param  mixed  $notifiable
39
     * @return \Illuminate\Notifications\Messages\NexmoMessage
40
     */
41
    public function toNexmo($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

41
    public function toNexmo(/** @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...
42
    {
43
        return (new NexmoMessage)
44
                    ->content('SmartSettia SMS: Invoice paid!')
45
                    ->from('12088851101');
46
    }
47
48
    /**
49
     * Get the array representation of the notification.
50
     *
51
     * @param  mixed  $notifiable
52
     * @return array
53
     */
54
    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

54
    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...
55
    {
56
        return [
57
            //
58
        ];
59
    }
60
}
61