summaryrefslogtreecommitdiffstats
path: root/Http
diff options
context:
space:
mode:
authorFabien Potencier <fabien.potencier@gmail.com>2014-04-16 12:36:21 +0200
committerFabien Potencier <fabien.potencier@gmail.com>2014-04-16 12:36:21 +0200
commite56288b054f87e1c741a1ffa013a4b8ea8bf7ddc (patch)
tree78131b155e52b7cca010c1d9e7d543e766210456 /Http
parent4746383920bc2bb152808092c7a68fb117e12273 (diff)
parente61596f268884e2584fb667016b4c3ad72270a1d (diff)
downloadsymfony-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 'Http')
-rw-r--r--Http/Firewall/AbstractAuthenticationListener.php2
-rw-r--r--Http/Firewall/LogoutListener.php2
-rw-r--r--Http/HttpUtils.php2
-rw-r--r--Http/RememberMe/AbstractRememberMeServices.php2
4 files changed, 4 insertions, 4 deletions
diff --git a/Http/Firewall/AbstractAuthenticationListener.php b/Http/Firewall/AbstractAuthenticationListener.php
index 7fa991c..80bfcd0 100644
--- a/Http/Firewall/AbstractAuthenticationListener.php
+++ b/Http/Firewall/AbstractAuthenticationListener.php
@@ -171,7 +171,7 @@ abstract class AbstractAuthenticationListener implements ListenerInterface
*
* @param Request $request
*
- * @return Boolean
+ * @return bool
*/
protected function requiresAuthentication(Request $request)
{
diff --git a/Http/Firewall/LogoutListener.php b/Http/Firewall/LogoutListener.php
index ed7f7fe..91f17bb 100644
--- a/Http/Firewall/LogoutListener.php
+++ b/Http/Firewall/LogoutListener.php
@@ -131,7 +131,7 @@ class LogoutListener implements ListenerInterface
*
* @param Request $request
*
- * @return Boolean
+ * @return bool
*/
protected function requiresLogout(Request $request)
{
diff --git a/Http/HttpUtils.php b/Http/HttpUtils.php
index e78935e..451c12c 100644
--- a/Http/HttpUtils.php
+++ b/Http/HttpUtils.php
@@ -96,7 +96,7 @@ class HttpUtils
* @param Request $request A Request instance
* @param string $path A path (an absolute path (/foo), an absolute URL (http://...), or a route name (foo))
*
- * @return Boolean true if the path is the same as the one from the Request, false otherwise
+ * @return bool true if the path is the same as the one from the Request, false otherwise
*/
public function checkRequestPath(Request $request, $path)
{
diff --git a/Http/RememberMe/AbstractRememberMeServices.php b/Http/RememberMe/AbstractRememberMeServices.php
index 740d3d6..1e60db0 100644
--- a/Http/RememberMe/AbstractRememberMeServices.php
+++ b/Http/RememberMe/AbstractRememberMeServices.php
@@ -295,7 +295,7 @@ abstract class AbstractRememberMeServices implements RememberMeServicesInterface
*
* @param Request $request
*
- * @return Boolean
+ * @return bool
*/
protected function isRememberMeRequested(Request $request)
{