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 /Http | |
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 'Http')
-rw-r--r-- | Http/Firewall/AbstractAuthenticationListener.php | 2 | ||||
-rw-r--r-- | Http/Firewall/LogoutListener.php | 2 | ||||
-rw-r--r-- | Http/HttpUtils.php | 2 | ||||
-rw-r--r-- | Http/RememberMe/AbstractRememberMeServices.php | 2 | ||||
-rw-r--r-- | Http/RememberMe/TokenBasedRememberMeServices.php | 2 |
5 files changed, 5 insertions, 5 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 7dc9503..722f4a1 100644 --- a/Http/Firewall/LogoutListener.php +++ b/Http/Firewall/LogoutListener.php @@ -121,7 +121,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 a7b0226..50d4f26 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) { diff --git a/Http/RememberMe/TokenBasedRememberMeServices.php b/Http/RememberMe/TokenBasedRememberMeServices.php index 75a2a0d..db1b508 100644 --- a/Http/RememberMe/TokenBasedRememberMeServices.php +++ b/Http/RememberMe/TokenBasedRememberMeServices.php @@ -73,7 +73,7 @@ class TokenBasedRememberMeServices extends AbstractRememberMeServices * @param string $hash1 The first hash * @param string $hash2 The second hash * - * @return Boolean true if the two hashes are the same, false otherwise + * @return bool true if the two hashes are the same, false otherwise */ private function compareHashes($hash1, $hash2) { |