[Security] Fix wrong term in UserProviderInterface

This commit is contained in:
Issei.M 2017-07-12 23:04:14 +09:00 committed by Fabien Potencier
parent 0100ca145d
commit b5b8c15831
1 changed files with 2 additions and 2 deletions

View File

@ -50,7 +50,7 @@ interface UserProviderInterface
public function loadUserByUsername($username);
/**
* Refreshes the user for the account interface.
* Refreshes the user.
*
* It is up to the implementation to decide if the user data should be
* totally reloaded (e.g. from the database), or if the UserInterface
@ -61,7 +61,7 @@ interface UserProviderInterface
*
* @return UserInterface
*
* @throws UnsupportedUserException if the account is not supported
* @throws UnsupportedUserException if the user is not supported
*/
public function refreshUser(UserInterface $user);