Total Complexity | 3 |
Total Lines | 41 |
Duplicated Lines | 0 % |
Coverage | 46.15% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | class NewUserWelcome extends Notification implements ShouldQueue |
||
12 | { |
||
13 | use Queueable; |
||
14 | public $hash, $user; |
||
15 | |||
16 | /** |
||
17 | * Create a new notification instance. |
||
18 | * |
||
19 | * @return void |
||
20 | */ |
||
21 | 4 | public function __construct($user, $linkHash) |
|
25 | 4 | } |
|
26 | |||
27 | /** |
||
28 | * Get the notification's delivery channels. |
||
29 | * |
||
30 | * @param mixed $notifiable |
||
31 | * @return array |
||
32 | */ |
||
33 | 4 | public function via($notifiable) |
|
|
|||
34 | { |
||
35 | 4 | return ['mail']; |
|
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) |
||
52 | } |
||
53 | |||
67 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.