diff options
author | Fabien Potencier <fabien.potencier@gmail.com> | 2011-06-16 18:00:36 +0200 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2011-06-16 18:00:36 +0200 |
commit | a35825a241b2b0fa0d5c74e7a580ada9bdb70290 (patch) | |
tree | ca0be7f00fa6d447f0ca2685e234087571c3580e /Core/User/UserProviderInterface.php | |
parent | 4015cc3ce76a4bbfebea001dcb03f523de3b8edf (diff) | |
download | symfony-security-a35825a241b2b0fa0d5c74e7a580ada9bdb70290.zip symfony-security-a35825a241b2b0fa0d5c74e7a580ada9bdb70290.tar.gz symfony-security-a35825a241b2b0fa0d5c74e7a580ada9bdb70290.tar.bz2 |
[Security] renamed UserProviderInterface::loadUser() to refreshUser()
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 |