diff options
author | Fabien Potencier <fabien.potencier@gmail.com> | 2014-04-16 12:30:19 +0200 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2014-04-16 12:30:19 +0200 |
commit | a6be31fc09c34a308c7a756b39e8a504a822694f (patch) | |
tree | ecf7561ca743f0a175d572057834942d4d88a54f /Core/User/AdvancedUserInterface.php | |
parent | 74eaf535ddcd6cad834c68e7802cfcb08f400c1e (diff) | |
download | symfony-security-a6be31fc09c34a308c7a756b39e8a504a822694f.zip symfony-security-a6be31fc09c34a308c7a756b39e8a504a822694f.tar.gz symfony-security-a6be31fc09c34a308c7a756b39e8a504a822694f.tar.bz2 |
fixed types in phpdocs
Diffstat (limited to 'Core/User/AdvancedUserInterface.php')
-rw-r--r-- | Core/User/AdvancedUserInterface.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Core/User/AdvancedUserInterface.php b/Core/User/AdvancedUserInterface.php index 5b3a51a..19775c0 100644 --- a/Core/User/AdvancedUserInterface.php +++ b/Core/User/AdvancedUserInterface.php @@ -43,7 +43,7 @@ interface AdvancedUserInterface extends UserInterface * Internally, if this method returns false, the authentication system * will throw an AccountExpiredException and prevent login. * - * @return Boolean true if the user's account is non expired, false otherwise + * @return bool true if the user's account is non expired, false otherwise * * @see AccountExpiredException */ @@ -55,7 +55,7 @@ interface AdvancedUserInterface extends UserInterface * Internally, if this method returns false, the authentication system * will throw a LockedException and prevent login. * - * @return Boolean true if the user is not locked, false otherwise + * @return bool true if the user is not locked, false otherwise * * @see LockedException */ @@ -67,7 +67,7 @@ interface AdvancedUserInterface extends UserInterface * Internally, if this method returns false, the authentication system * will throw a CredentialsExpiredException and prevent login. * - * @return Boolean true if the user's credentials are non expired, false otherwise + * @return bool true if the user's credentials are non expired, false otherwise * * @see CredentialsExpiredException */ @@ -79,7 +79,7 @@ interface AdvancedUserInterface extends UserInterface * Internally, if this method returns false, the authentication system * will throw a DisabledException and prevent login. * - * @return Boolean true if the user is enabled, false otherwise + * @return bool true if the user is enabled, false otherwise * * @see DisabledException */ |