| Total Complexity | 4 |
| Total Lines | 51 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 10 | class PasswordResetSuccess extends Notification implements ShouldQueue |
||
| 11 | { |
||
| 12 | use Queueable; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * Create a new notification instance. |
||
| 16 | * |
||
| 17 | * @return void |
||
| 18 | */ |
||
| 19 | public function __construct() |
||
| 21 | // |
||
| 22 | } |
||
| 23 | |||
| 24 | /** |
||
| 25 | * Get the notification's delivery channels. |
||
| 26 | * |
||
| 27 | * @param mixed $notifiable |
||
| 28 | * |
||
| 29 | * @return array |
||
| 30 | */ |
||
| 31 | public function via($notifiable) |
||
| 34 | } |
||
| 35 | |||
| 36 | /** |
||
| 37 | * Get the mail representation of the notification. |
||
| 38 | * |
||
| 39 | * @param mixed $notifiable |
||
| 40 | * |
||
| 41 | * @return \Illuminate\Notifications\Messages\MailMessage |
||
| 42 | */ |
||
| 43 | public function toMail($notifiable) |
||
| 44 | { |
||
| 45 | return (new MailMessage()) |
||
| 46 | ->line('You have changed your password successfully.') |
||
| 47 | ->line('If you did change password, no further action is required.') |
||
| 48 | ->line('If you did not change password, sign in and change your password NOW!'); |
||
| 49 | } |
||
| 50 | |||
| 51 | /** |
||
| 52 | * Get the array representation of the notification. |
||
| 53 | * |
||
| 54 | * @param mixed $notifiable |
||
| 55 | * |
||
| 56 | * @return array |
||
| 57 | */ |
||
| 58 | public function toArray($notifiable) |
||
| 61 | // |
||
| 62 | ]; |
||
| 65 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.