Skip to content

Commit 21ac90c

Browse files
committed
minor #14239 Fix small typo by removing semicolon (mercuryseries)
This PR was squashed before being merged into the 5.1 branch. Discussion ---------- Fix small typo by removing semicolon Fix small typo by removing semicolon <!-- If your pull request fixes a BUG, use the oldest maintained branch that contains the bug (see https://symfony.com/releases for the list of maintained branches). If your pull request documents a NEW FEATURE, use the same Symfony branch where the feature was introduced (and `master` for features of unreleased versions). --> Commits ------- db7298f Fix small typo by removing semicolon
2 parents 41a502c + db7298f commit 21ac90c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

security/experimental_authenticators.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -493,7 +493,7 @@ authenticator, you would initialize the passport like this::
493493
return new Passport($user, new PasswordCredentials($password), [
494494
// $this->userRepository must implement PasswordUpgraderInterface
495495
new PasswordUpgradeBadge($password, $this->userRepository),
496-
new CsrfTokenBadge('login', $csrfToken);
496+
new CsrfTokenBadge('login', $csrfToken),
497497
]);
498498
}
499499
}

0 commit comments

Comments
 (0)