Total Complexity | 4 |
Total Lines | 49 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
10 | class GetATreatmentMailNotification extends Notification |
||
11 | { |
||
12 | use Queueable; |
||
13 | |||
14 | protected array $data; |
||
15 | |||
16 | /** |
||
17 | * Create a new notification instance. |
||
18 | * |
||
19 | * @param array $data |
||
20 | */ |
||
21 | public function __construct(array $data) |
||
22 | { |
||
23 | $this->data = $data; |
||
24 | } |
||
25 | |||
26 | /** |
||
27 | * Get the notification's delivery channels. |
||
28 | * |
||
29 | * @param mixed $notifiable |
||
30 | * @return array |
||
31 | */ |
||
32 | public function via($notifiable) |
||
35 | } |
||
36 | |||
37 | /** |
||
38 | * Get the mail representation of the notification. |
||
39 | * |
||
40 | * @param mixed $notifiable |
||
41 | * @return \Illuminate\Notifications\Messages\MailMessage |
||
42 | */ |
||
43 | public function toMail($notifiable): MailMessage |
||
44 | { |
||
45 | return (new MailMessage()) |
||
46 | ->subject('Message from the Get a Treatment form') |
||
47 | ->markdown('mail.getATreatment', ['data' => $this->data]); |
||
48 | } |
||
49 | |||
50 | /** |
||
51 | * Get the array representation of the notification. |
||
52 | * |
||
53 | * @param mixed $notifiable |
||
54 | * @return array |
||
55 | */ |
||
56 | public function toArray($notifiable) |
||
59 | // |
||
60 | ]; |
||
61 | } |
||
63 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.