improve login throttling rate limiter requirement message

This commit is contained in:
Jesse Rushlow 2021-03-22 06:04:25 -04:00
parent 9bb312dc59
commit 6958bdc0be
No known key found for this signature in database
GPG Key ID: 79712BB7E139D5AC
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ class LoginThrottlingFactory implements AuthenticatorFactoryInterface, SecurityF
}
if (!class_exists(RateLimiterFactory::class)) {
throw new \LogicException('Login throttling requires symfony/rate-limiter to be installed and enabled.');
throw new \LogicException('Login throttling requires the Rate Limiter component. Try running "composer require symfony/rate-limiter".');
}
if (!isset($config['limiter'])) {