diff options
author | Jordi Boggiano <j.boggiano@seld.be> | 2011-02-12 15:39:55 +0100 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2011-02-12 22:14:16 +0100 |
commit | ed8e5c903077e2b83bdade3a59985f01e3d58c70 (patch) | |
tree | 931ae469d458aaab7c8b6cfba79348efec3229d3 | |
parent | 48441766f3e03eb2aad8a4ee546d4ac3535b7ffe (diff) | |
download | symfony-security-ed8e5c903077e2b83bdade3a59985f01e3d58c70.zip symfony-security-ed8e5c903077e2b83bdade3a59985f01e3d58c70.tar.gz symfony-security-ed8e5c903077e2b83bdade3a59985f01e3d58c70.tar.bz2 |
[Security] Fixed indenting
-rw-r--r-- | Core/User/UserProviderInterface.php | 44 |
1 files changed, 22 insertions, 22 deletions
diff --git a/Core/User/UserProviderInterface.php b/Core/User/UserProviderInterface.php index 70ba0d0..3486fff 100644 --- a/Core/User/UserProviderInterface.php +++ b/Core/User/UserProviderInterface.php @@ -30,28 +30,28 @@ interface UserProviderInterface * * @return AccountInterface */ - function loadUserByUsername($username); + function loadUserByUsername($username); - /** - * Loads 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 - * identity map of an entity manager. - * - * @throws UnsupportedAccountException if the account is not supported - * @param AccountInterface $account - * - * @return AccountInterface - */ - function loadUserByAccount(AccountInterface $account); + /** + * Loads 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 + * identity map of an entity manager. + * + * @throws UnsupportedAccountException if the account is not supported + * @param AccountInterface $account + * + * @return AccountInterface + */ + function loadUserByAccount(AccountInterface $account); - /** - * Whether this provider supports the given user class - * - * @param string $class - * - * @return Boolean - */ - function supportsClass($class); + /** + * Whether this provider supports the given user class + * + * @param string $class + * + * @return Boolean + */ + function supportsClass($class); }
\ No newline at end of file |