Skip to content

Commit b6b72c8

Browse files
Use correct adjective
The word 'many' is used to describe nouns that can be counted, whereas much refers to mass.
1 parent 84b5718 commit b6b72c8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Security/Security.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ private function getAuthenticator(?string $authenticatorName, string $firewallNa
7676
throw new LogicException(sprintf('No authenticator was found for the firewall "%s".', $firewallName));
7777
}
7878
if (1 < \count($authenticatorIds)) {
79-
throw new LogicException(sprintf('Too much authenticators were found for the current firewall "%s". You must provide an instance of "%s" to login programmatically. The available authenticators for the firewall "%s" are "%s".', $firewallName, AuthenticatorInterface::class, $firewallName, implode('" ,"', $authenticatorIds)));
79+
throw new LogicException(sprintf('Too many authenticators were found for the current firewall "%s". You must provide an instance of "%s" to login programmatically. The available authenticators for the firewall "%s" are "%s".', $firewallName, AuthenticatorInterface::class, $firewallName, implode('" ,"', $authenticatorIds)));
8080
}
8181

8282
return $firewallAuthenticatorLocator->get($authenticatorIds[0]);

0 commit comments

Comments
 (0)