Completed
Push — master ( db05bc...55c0ed )
by Valery
05:35
created
src/MessageHandler/SendResetPasswordLinkHandler.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -70,13 +70,13 @@
 block discarded – undo
70 70
     private function buildEmail(User $user): TemplatedEmail
71 71
     {
72 72
         return (new TemplatedEmail())
73
-              ->from($this->getSender())
74
-              ->to($user->getEmail())
75
-              ->subject($this->getSubject())
76
-              ->textTemplate('emails/reset.txt.twig')
77
-              ->context([
78
-                  'confirmationUrl' => $this->getConfirmationUrl($user),
79
-                  'username' => $user->getUsername(),
80
-              ]);
73
+                ->from($this->getSender())
74
+                ->to($user->getEmail())
75
+                ->subject($this->getSubject())
76
+                ->textTemplate('emails/reset.txt.twig')
77
+                ->context([
78
+                    'confirmationUrl' => $this->getConfirmationUrl($user),
79
+                    'username' => $user->getUsername(),
80
+                ]);
81 81
     }
82 82
 }
Please login to merge, or discard this patch.