Skip to content

Commit

Permalink
fix psr2 + pr suggestion
Browse files Browse the repository at this point in the history
  • Loading branch information
jason-jackson committed Apr 15, 2024
1 parent b571fce commit 7986a97
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions application/features/bootstrap/EmailContext.php
Original file line number Diff line number Diff line change
Expand Up @@ -568,7 +568,7 @@ public function noMfasExist()
}

/**
* @Given :arg1 verified webauthn mfa option does exist
* @Given :count verified webauthn mfa option does exist
*/
public function aVerifiedWebAuthnMfaOptionDoesExist($count)
{
Expand All @@ -577,7 +577,7 @@ public function aVerifiedWebAuthnMfaOptionDoesExist($count)
if (intval($count) > 1) {
$mfa = $this->testMfaOption;

for ($i=1; $i < $count; $i++) {
for ($i = 1; $i < $count; $i++) {
MfaWebauthn::createWebauthn($mfa, '');
}
}
Expand Down

0 comments on commit 7986a97

Please sign in to comment.