Completed
Push — master ( 42e0a6...9b42f3 )
by Sebastian
06:29 queued 02:28
created
app/Services/Mailers/AdminMailer.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@  discard block
 block discarded – undo
18 18
 
19 19
     public function userWasCreated(UserWasCreated $event)
20 20
     {
21
-        Password::broker('back')->sendResetLink(['email' => $event->user->email], function (Message $message) {
21
+        Password::broker('back')->sendResetLink(['email' => $event->user->email], function(Message $message) {
22 22
             $message->subject(fragment('passwords.subjectEmailNewUser'));
23 23
         });
24 24
     }
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
     {
28 28
         $this->sendMail(
29 29
             config('mail.recipients.questionForm'),
30
-            'Een nieuwe reactie op ' . config('app.url'),
30
+            'Een nieuwe reactie op '.config('app.url'),
31 31
             'emails.admin.contactFormSubmitted',
32 32
             $event->formResponse->toArray()
33 33
         );
Please login to merge, or discard this patch.
app/Providers/ConfigServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@
 block discarded – undo
51 51
 
52 52
         config()->set(
53 53
             'mail.recipients',
54
-            collect(config('mail.recipients'))->map(function () {
54
+            collect(config('mail.recipients'))->map(function() {
55 55
                 return '[email protected]';
56 56
             })
57 57
         );
Please login to merge, or discard this patch.