@@ -18,7 +18,7 @@ discard block |
||
| 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 |
||
| 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 | ); |
@@ -51,7 +51,7 @@ |
||
| 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 | ); |