diff options
author | Fabien Potencier <fabien.potencier@gmail.com> | 2014-04-16 12:36:21 +0200 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2014-04-16 12:36:21 +0200 |
commit | e56288b054f87e1c741a1ffa013a4b8ea8bf7ddc (patch) | |
tree | 78131b155e52b7cca010c1d9e7d543e766210456 /Core/Authentication | |
parent | 4746383920bc2bb152808092c7a68fb117e12273 (diff) | |
parent | e61596f268884e2584fb667016b4c3ad72270a1d (diff) | |
download | symfony-security-e56288b054f87e1c741a1ffa013a4b8ea8bf7ddc.zip symfony-security-e56288b054f87e1c741a1ffa013a4b8ea8bf7ddc.tar.gz symfony-security-e56288b054f87e1c741a1ffa013a4b8ea8bf7ddc.tar.bz2 |
Merge branch '2.4'
* 2.4:
fixed types in phpdocs
fixed types in phpdocs
Conflicts:
src/Symfony/Component/Security/Core/Encoder/BasePasswordEncoder.php
src/Symfony/Component/Security/Http/RememberMe/TokenBasedRememberMeServices.php
src/Symfony/Component/Serializer/Encoder/JsonEncoder.php
src/Symfony/Component/Serializer/Normalizer/GetSetMethodNormalizer.php
src/Symfony/Component/Validator/Mapping/ClassMetadata.php
src/Symfony/Component/Validator/Mapping/ElementMetadata.php
src/Symfony/Component/Validator/Mapping/MemberMetadata.php
src/Symfony/Component/Validator/MetadataFactoryInterface.php
Diffstat (limited to 'Core/Authentication')
4 files changed, 7 insertions, 7 deletions
diff --git a/Core/Authentication/AuthenticationTrustResolverInterface.php b/Core/Authentication/AuthenticationTrustResolverInterface.php index ac07db0..03b48e9 100644 --- a/Core/Authentication/AuthenticationTrustResolverInterface.php +++ b/Core/Authentication/AuthenticationTrustResolverInterface.php @@ -28,7 +28,7 @@ interface AuthenticationTrustResolverInterface * * @param TokenInterface $token * - * @return Boolean + * @return bool */ public function isAnonymous(TokenInterface $token = null); @@ -38,7 +38,7 @@ interface AuthenticationTrustResolverInterface * * @param TokenInterface $token * - * @return Boolean + * @return bool */ public function isRememberMe(TokenInterface $token = null); @@ -47,7 +47,7 @@ interface AuthenticationTrustResolverInterface * * @param TokenInterface $token * - * @return Boolean + * @return bool */ public function isFullFledged(TokenInterface $token = null); } diff --git a/Core/Authentication/Provider/AuthenticationProviderInterface.php b/Core/Authentication/Provider/AuthenticationProviderInterface.php index f63a924..23724db 100644 --- a/Core/Authentication/Provider/AuthenticationProviderInterface.php +++ b/Core/Authentication/Provider/AuthenticationProviderInterface.php @@ -29,7 +29,7 @@ interface AuthenticationProviderInterface extends AuthenticationManagerInterface * * @param TokenInterface $token A TokenInterface instance * - * @return Boolean true if the implementation supports the Token, false otherwise + * @return bool true if the implementation supports the Token, false otherwise */ public function supports(TokenInterface $token); } diff --git a/Core/Authentication/Token/AbstractToken.php b/Core/Authentication/Token/AbstractToken.php index 84a92f1..4590939 100644 --- a/Core/Authentication/Token/AbstractToken.php +++ b/Core/Authentication/Token/AbstractToken.php @@ -188,7 +188,7 @@ abstract class AbstractToken implements TokenInterface * * @param string $name The attribute name * - * @return Boolean true if the attribute exists, false otherwise + * @return bool true if the attribute exists, false otherwise */ public function hasAttribute($name) { diff --git a/Core/Authentication/Token/TokenInterface.php b/Core/Authentication/Token/TokenInterface.php index a909469..8f7d03f 100644 --- a/Core/Authentication/Token/TokenInterface.php +++ b/Core/Authentication/Token/TokenInterface.php @@ -69,7 +69,7 @@ interface TokenInterface extends \Serializable /** * Returns whether the user is authenticated or not. * - * @return Boolean true if the token has been authenticated, false otherwise + * @return bool true if the token has been authenticated, false otherwise */ public function isAuthenticated(); @@ -104,7 +104,7 @@ interface TokenInterface extends \Serializable * * @param string $name The attribute name * - * @return Boolean true if the attribute exists, false otherwise + * @return bool true if the attribute exists, false otherwise */ public function hasAttribute($name); |