diff options
author | Fabien Potencier <fabien.potencier@gmail.com> | 2012-01-09 12:13:49 +0100 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2012-01-09 12:13:49 +0100 |
commit | 646b2d922ff94aeba9647665a01235389aae6ff0 (patch) | |
tree | 8639a6ee66bea423d6f1ed81b2fe1c86cc756484 /Core/User/AdvancedUserInterface.php | |
parent | 892c9881f2b2253050107493b435805e4e2e63b2 (diff) | |
download | symfony-security-646b2d922ff94aeba9647665a01235389aae6ff0.zip symfony-security-646b2d922ff94aeba9647665a01235389aae6ff0.tar.gz symfony-security-646b2d922ff94aeba9647665a01235389aae6ff0.tar.bz2 |
fixed CS
Diffstat (limited to 'Core/User/AdvancedUserInterface.php')
-rw-r--r-- | Core/User/AdvancedUserInterface.php | 25 |
1 files changed, 16 insertions, 9 deletions
diff --git a/Core/User/AdvancedUserInterface.php b/Core/User/AdvancedUserInterface.php index f2d59fc..e951c65 100644 --- a/Core/User/AdvancedUserInterface.php +++ b/Core/User/AdvancedUserInterface.php @@ -11,6 +11,12 @@ namespace Symfony\Component\Security\Core\User; +use Symfony\Component\Security\Core\Exception\AccountStatusException; +use Symfony\Component\Security\Core\Exception\AccountExpiredException; +use Symfony\Component\Security\Core\Exception\LockedException; +use Symfony\Component\Security\Core\Exception\CredentialsExpiredException; +use Symfony\Component\Security\Core\Exception\DisabledException; + /** * Adds extra features to a user class related to account status flags. * @@ -25,7 +31,8 @@ namespace Symfony\Component\Security\Core\User; * of AccountStatusException * * @see UserInterface - * @see Symfony\Component\Security\Core\Exception\AccountStatusException + * @see AccountStatusException + * * @author Fabien Potencier <fabien@symfony.com> */ interface AdvancedUserInterface extends UserInterface @@ -36,9 +43,9 @@ interface AdvancedUserInterface extends UserInterface * Internally, if this method returns false, the authentication system * will throw an AccountExpiredException and prevent login. * - * @see Symfony\Component\Security\Core\Exception\AccountExpiredException - * * @return Boolean true if the user's account is non expired, false otherwise + * + * @see AccountExpiredException */ function isAccountNonExpired(); @@ -48,9 +55,9 @@ interface AdvancedUserInterface extends UserInterface * Internally, if this method returns false, the authentication system * will throw a LockedException and prevent login. * - * @see Symfony\Component\Security\Core\Exception\LockedException - * * @return Boolean true if the user is not locked, false otherwise + * + * @see LockedException */ function isAccountNonLocked(); @@ -60,9 +67,9 @@ interface AdvancedUserInterface extends UserInterface * Internally, if this method returns false, the authentication system * will throw a CredentialsExpiredException and prevent login. * - * @see Symfony\Component\Security\Core\Exception\CredentialsExpiredException - * * @return Boolean true if the user's credentials are non expired, false otherwise + * + * @see CredentialsExpiredException */ function isCredentialsNonExpired(); @@ -72,9 +79,9 @@ interface AdvancedUserInterface extends UserInterface * Internally, if this method returns false, the authentication system * will throw a DisabledException and prevent login. * - * @see Symfony\Component\Security\Core\Exception\DisabledException - * * @return Boolean true if the user is enabled, false otherwise + * + * @see DisabledException */ function isEnabled(); } |