mirror of
https://github.com/InvoiceShelf/InvoiceShelf.git
synced 2026-04-07 21:44:51 +00:00
Setup pint & run code style fix
This commit is contained in:
@@ -5,7 +5,6 @@ namespace InvoiceShelf\Notifications;
|
||||
use Illuminate\Auth\Notifications\ResetPassword;
|
||||
use Illuminate\Bus\Queueable;
|
||||
use Illuminate\Notifications\Messages\MailMessage;
|
||||
|
||||
use Illuminate\Notifications\Notification;
|
||||
|
||||
class CustomerMailResetPasswordNotification extends ResetPassword
|
||||
@@ -43,12 +42,12 @@ class CustomerMailResetPasswordNotification extends ResetPassword
|
||||
{
|
||||
$link = url("/{$notifiable->company->slug}/customer/reset/password/".$this->token);
|
||||
|
||||
return ( new MailMessage() )
|
||||
return (new MailMessage())
|
||||
->subject('Reset Password Notification')
|
||||
->line("Hello! You are receiving this email because we received a password reset request for your account.")
|
||||
->line('Hello! You are receiving this email because we received a password reset request for your account.')
|
||||
->action('Reset Password', $link)
|
||||
->line("This password reset link will expire in ".config('auth.passwords.users.expire')." minutes")
|
||||
->line("If you did not request a password reset, no further action is required.");
|
||||
->line('This password reset link will expire in '.config('auth.passwords.users.expire').' minutes')
|
||||
->line('If you did not request a password reset, no further action is required.');
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user