Skip to content

Commit 61c2f71

Browse files
committed
Run cs-fix
1 parent d7126ab commit 61c2f71

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Authentication/Actions/Email2FA.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ public function handle(IncomingRequest $request)
7777
$email->setMessage(view(setting('Auth.views')['action_email_2fa_email'], ['code' => $identity->secret]));
7878

7979
if ($email->send(false) === false) {
80-
throw new RuntimeException('Cannot send email for user: ' . $user->email . ' '. $email->printDebugger(['headers']));
80+
throw new RuntimeException('Cannot send email for user: ' . $user->email . ' ' . $email->printDebugger(['headers']));
8181
}
8282

8383
return view(setting('Auth.views')['action_email_2fa_verify']);

src/Authentication/Actions/EmailActivator.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public function show(): string
4747
$email->setMessage(view(setting('Auth.views')['action_email_activate_email'], ['code' => $code]));
4848

4949
if ($email->send(false) === false) {
50-
throw new RuntimeException('Cannot send email for user: ' . $user->email . ' '. $email->printDebugger(['headers']));
50+
throw new RuntimeException('Cannot send email for user: ' . $user->email . ' ' . $email->printDebugger(['headers']));
5151
}
5252

5353
// Display the info page

0 commit comments

Comments
 (0)