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 Mar 24, 2024
1 parent 4688dab commit e9f4cc8
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 @@ -28,11 +28,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 e9f4cc8

Please sign in to comment.