Skip to content

Commit 064c740

Browse files
Fixed small typo in code example
1 parent fb22fa0 commit 064c740

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cookbook/security/api_key_authentication.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ value and then a User object is created::
5959
public function authenticateToken(TokenInterface $token, UserProviderInterface $userProvider, $providerKey)
6060
{
6161
$apiKey = $token->getCredentials();
62-
$username = $this->userProvider->getUsernameForApiKey($apiKey)
62+
$username = $this->userProvider->getUsernameForApiKey($apiKey);
6363

6464
if (!$username) {
6565
throw new AuthenticationException(

0 commit comments

Comments
 (0)