Setup pint & run code style fix

This commit is contained in:
gdarko
2024-01-29 04:46:01 -06:00
parent 8de34efd8c
commit 4ab92473e9
406 changed files with 1616 additions and 2026 deletions

View File

@@ -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.');
}
/**