Skip to content

Commit

Permalink
Apply fixes from StyleCI
Browse files Browse the repository at this point in the history
  • Loading branch information
StyleCIBot committed Feb 22, 2022
1 parent 585fa6e commit ae7c7d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Actions/ConfirmTwoFactorAuthentication.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public function __construct(TwoFactorAuthenticationProvider $provider)
*/
public function __invoke($user, $code)
{
if (empty($user->two_factor_secret) ||
if (empty($user->two_factor_secret) ||
empty($code) ||
! $this->provider->verify(decrypt($user->two_factor_secret), $code)) {
throw ValidationException::withMessages([
Expand Down

0 comments on commit ae7c7d8

Please sign in to comment.