mirror of
https://github.com/InvoiceShelf/InvoiceShelf.git
synced 2026-04-11 23:37:22 +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 MailResetPasswordNotification extends ResetPassword
|
||||
@@ -41,14 +40,14 @@ class MailResetPasswordNotification extends ResetPassword
|
||||
*/
|
||||
public function toMail($notifiable)
|
||||
{
|
||||
$link = url("/reset-password/".$this->token);
|
||||
$link = url('/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