Total Complexity | 5 |
Total Lines | 56 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 1 | Features | 0 |
1 | <?php |
||
10 | class SubscribeSuccessfully 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) |
||
22 | { |
||
23 | $stripe = new \Stripe\StripeClient(\Config::get('services.stripe.secret')); |
||
24 | if (is_array($plan_id)) { |
||
25 | $this->plan = $stripe->plans->retrieve($plan_id['planId']); |
||
26 | } else { |
||
27 | $this->plan = $stripe->plans->retrieve($plan_id); |
||
28 | } |
||
29 | } |
||
30 | |||
31 | /** |
||
32 | * Get the notification's delivery channels. |
||
33 | * |
||
34 | * @param mixed $notifiable |
||
35 | * @return array |
||
36 | */ |
||
37 | public function via($notifiable) |
||
|
|||
38 | { |
||
39 | return ['mail']; |
||
40 | } |
||
41 | |||
42 | /** |
||
43 | * Get the mail representation of the notification. |
||
44 | * |
||
45 | * @param mixed $notifiable |
||
46 | * @return \Illuminate\Notifications\Messages\MailMessage |
||
47 | */ |
||
48 | public function toMail($notifiable) |
||
55 | } |
||
56 | |||
57 | /** |
||
58 | * Get the array representation of the notification. |
||
59 | * |
||
60 | * @param mixed $notifiable |
||
61 | * @return array |
||
62 | */ |
||
63 | public function toArray($notifiable) |
||
66 | // |
||
67 | ]; |
||
68 | } |
||
70 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.