Total Complexity | 4 |
Total Lines | 52 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 1 | Features | 0 |
1 | <?php |
||
10 | class UnsubscribeSuccessfully extends Notification |
||
11 | { |
||
12 | use Queueable; |
||
13 | |||
14 | protected $plan; |
||
15 | |||
16 | /** |
||
17 | * Create a new notification instance. |
||
18 | * |
||
19 | * @return void |
||
20 | */ |
||
21 | public function __construct($plan_id) |
||
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) |
||
51 | } |
||
52 | |||
53 | /** |
||
54 | * Get the array representation of the notification. |
||
55 | * |
||
56 | * @param mixed $notifiable |
||
57 | * @return array |
||
58 | */ |
||
59 | public function toArray($notifiable) |
||
66 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.