Total Complexity | 4 |
Total Lines | 50 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | class NewTechTipNotification extends Notification |
||
12 | { |
||
13 | use Queueable; |
||
14 | |||
15 | protected $techTip; |
||
16 | |||
17 | /** |
||
18 | * Create a new notification instance. |
||
19 | * |
||
20 | * @return void |
||
21 | */ |
||
22 | public function __construct(TechTip $techTip) |
||
23 | { |
||
24 | $this->techTip = $techTip; |
||
25 | } |
||
26 | |||
27 | /** |
||
28 | * Get the notification's delivery channels. |
||
29 | * |
||
30 | * @param mixed $notifiable |
||
31 | * @return array |
||
32 | */ |
||
33 | public function via($notifiable) |
||
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) |
||
45 | { |
||
46 | return (new MailMessage) |
||
47 | ->greeting('New Tech Tip') |
||
48 | ->line('Subject: '.$this->techTip->subject) |
||
49 | ->action('Click to View the Tech Tip', url(route('tech-tips.show', $this->techTip->slug))); |
||
50 | } |
||
51 | |||
52 | /** |
||
53 | * Get the array representation of the notification. |
||
54 | * |
||
55 | * @param mixed $notifiable |
||
56 | * @return array |
||
57 | */ |
||
58 | public function toArray($notifiable) |
||
61 | // |
||
62 | ]; |
||
63 | } |
||
65 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.