Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
chrysanthos authored and github-actions[bot] committed Apr 22, 2024
1 parent 63bc5bb commit ddf907f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/Http/Controllers/OtpVerificationController.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@ public function send(Request $request)
]);

$otp = $request->get('otp-code-1')
. $request->get('otp-code-2')
. $request->get('otp-code-3')
. $request->get('otp-code-4')
. $request->get('otp-code-5')
. $request->get('otp-code-6');
.$request->get('otp-code-2')
.$request->get('otp-code-3')
.$request->get('otp-code-4')
.$request->get('otp-code-5')
.$request->get('otp-code-6');

/** @var User $user */
$user = auth()->user();
Expand Down

0 comments on commit ddf907f

Please sign in to comment.