minor #11215 [Security] Add missing dot at the end of an exception message (rybakit)

This PR was merged into the 2.6-dev branch.

Discussion
----------

[Security] Add missing dot at the end of an exception message

| Q             | A
| ------------- | ---
| Fixed tickets | -
| License       | MIT

Commits
-------

8e1f978 Add missing dot at the end of an exception message
This commit is contained in:
Fabien Potencier 2014-07-25 11:13:45 +02:00
commit e4dd60ae0d

View File

@ -70,7 +70,7 @@ abstract class UserAuthenticationProvider implements AuthenticationProviderInter
$user = $this->retrieveUser($username, $token); $user = $this->retrieveUser($username, $token);
} catch (UsernameNotFoundException $notFound) { } catch (UsernameNotFoundException $notFound) {
if ($this->hideUserNotFoundExceptions) { if ($this->hideUserNotFoundExceptions) {
throw new BadCredentialsException('Bad credentials', 0, $notFound); throw new BadCredentialsException('Bad credentials.', 0, $notFound);
} }
$notFound->setUsername($username); $notFound->setUsername($username);
@ -87,7 +87,7 @@ abstract class UserAuthenticationProvider implements AuthenticationProviderInter
$this->userChecker->checkPostAuth($user); $this->userChecker->checkPostAuth($user);
} catch (BadCredentialsException $e) { } catch (BadCredentialsException $e) {
if ($this->hideUserNotFoundExceptions) { if ($this->hideUserNotFoundExceptions) {
throw new BadCredentialsException('Bad credentials', 0, $e); throw new BadCredentialsException('Bad credentials.', 0, $e);
} }
throw $e; throw $e;