Completed
Push — master ( 567ed5...b10db5 )
by Sebastian
04:18
created
app/Services/Mailers/ContactFormMailer.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -13,10 +13,10 @@
 block discarded – undo
13 13
 
14 14
     public function whenContactFormWasSubmitted(ContactFormWasSubmitted $event)
15 15
     {
16
-        collect(config('mail.questionFormRecipients'))->each(function (string $email) use ($event) {
16
+        collect(config('mail.questionFormRecipients'))->each(function(string $email) use ($event) {
17 17
             $this->sendMail(
18 18
                 $email,
19
-                'Een nieuwe reactie op ' . config('app.url'),
19
+                'Een nieuwe reactie op '.config('app.url'),
20 20
                 'emails.contactFormSubmitted',
21 21
                 $event->formResponse->toArray()
22 22
             );
Please login to merge, or discard this patch.
app/Services/Mailers/AdminMailer.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -13,17 +13,17 @@
 block discarded – undo
13 13
 
14 14
     public function userWasCreated(UserWasCreated $event)
15 15
     {
16
-        Password::broker('back')->sendResetLink(['email' => $event->user->email], function (Message $message) {
16
+        Password::broker('back')->sendResetLink(['email' => $event->user->email], function(Message $message) {
17 17
             $message->subject(fragment('passwords.subjectEmailNewUser'));
18 18
         });
19 19
     }
20 20
 
21 21
     public function contactFormWasSubmitted(ContactFormWasSubmitted $event)
22 22
     {
23
-        collect(config('mail.questionFormRecipients'))->each(function (string $email) use ($event) {
23
+        collect(config('mail.questionFormRecipients'))->each(function(string $email) use ($event) {
24 24
             $this->sendMail(
25 25
                 $email,
26
-                'Een nieuwe reactie op ' . config('app.url'),
26
+                'Een nieuwe reactie op '.config('app.url'),
27 27
                 'emails.admin.contactFormSubmitted',
28 28
                 $event->formResponse->toArray()
29 29
             );
Please login to merge, or discard this patch.