summaryrefslogtreecommitdiffstats
path: root/Core/User
diff options
context:
space:
mode:
authorFabien Potencier <fabien.potencier@gmail.com>2014-11-30 17:59:09 +0100
committerFabien Potencier <fabien.potencier@gmail.com>2014-11-30 17:59:09 +0100
commitf9c498153d663c0cf0710ff9c89a11d2a4833cdc (patch)
treefe2c86b4887eef95757f849324e26d20965766bc /Core/User
parent748e258f7683a17e9803ded49ae94ab3e24e6c68 (diff)
parente5dfe6a3e96c71e87c0ca9aa84115accd9ebb229 (diff)
downloadsymfony-security-f9c498153d663c0cf0710ff9c89a11d2a4833cdc.zip
symfony-security-f9c498153d663c0cf0710ff9c89a11d2a4833cdc.tar.gz
symfony-security-f9c498153d663c0cf0710ff9c89a11d2a4833cdc.tar.bz2
minor #12774 Docblock Fixes (GrahamCampbell)
This PR was merged into the 2.3 branch. Discussion ---------- Docblock Fixes | Q | A | ------------- | --- | Bug fix? | no | New feature? | no | BC breaks? | no | Deprecations? | no | Tests pass? | yes | Fixed tickets | N/A | License | MIT | Doc PR | N/A ##### This pull request fixes the docblock alignment as requested in #12760. It was also necessary for me to ensure the `@return` annotations were correctly separated in order to accurately align the `@param` annotations. Commits ------- 443307e Docblock fixes
Diffstat (limited to 'Core/User')
-rw-r--r--Core/User/AdvancedUserInterface.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/Core/User/AdvancedUserInterface.php b/Core/User/AdvancedUserInterface.php
index 19775c0..087c3c6 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 bool 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 bool 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 bool 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 bool true if the user is enabled, false otherwise
+ * @return bool true if the user is enabled, false otherwise
*
* @see DisabledException
*/