diff options
Diffstat (limited to 'Core/User/UserProviderInterface.php')
-rw-r--r-- | Core/User/UserProviderInterface.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Core/User/UserProviderInterface.php b/Core/User/UserProviderInterface.php index fb5c106..11fd62c 100644 --- a/Core/User/UserProviderInterface.php +++ b/Core/User/UserProviderInterface.php @@ -33,7 +33,7 @@ interface UserProviderInterface function loadUserByUsername($username); /** - * Loads the user for the account interface. + * Refreshes the user for the account interface. * * It is up to the implementation if it decides to reload the user data * from the database, or if it simply merges the passed User into the @@ -44,7 +44,7 @@ interface UserProviderInterface * * @return UserInterface */ - function loadUser(UserInterface $user); + function refreshUser(UserInterface $user); /** * Whether this provider supports the given user class |