diff options
author | Fabien Potencier <fabien.potencier@gmail.com> | 2014-04-12 19:54:57 +0200 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2014-04-15 07:41:45 +0200 |
commit | c9dff33575d2eb04e34c31167f5fba8bf3f355d6 (patch) | |
tree | bb0d00d583d307107cc228429fa4a0379c08c9b9 /Http/EntryPoint | |
parent | b2718821b6325d65b9b51eecb671f84605716af6 (diff) | |
download | symfony-security-c9dff33575d2eb04e34c31167f5fba8bf3f355d6.zip symfony-security-c9dff33575d2eb04e34c31167f5fba8bf3f355d6.tar.gz symfony-security-c9dff33575d2eb04e34c31167f5fba8bf3f355d6.tar.bz2 |
made phpdoc types consistent with those defined in Hack
Diffstat (limited to 'Http/EntryPoint')
-rw-r--r-- | Http/EntryPoint/FormAuthenticationEntryPoint.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Http/EntryPoint/FormAuthenticationEntryPoint.php b/Http/EntryPoint/FormAuthenticationEntryPoint.php index 06df099..c734db0 100644 --- a/Http/EntryPoint/FormAuthenticationEntryPoint.php +++ b/Http/EntryPoint/FormAuthenticationEntryPoint.php @@ -34,7 +34,7 @@ class FormAuthenticationEntryPoint implements AuthenticationEntryPointInterface * @param HttpKernelInterface $kernel * @param HttpUtils $httpUtils An HttpUtils instance * @param string $loginPath The path to the login form - * @param Boolean $useForward Whether to forward or redirect to the login form + * @param bool $useForward Whether to forward or redirect to the login form */ public function __construct(HttpKernelInterface $kernel, HttpUtils $httpUtils, $loginPath, $useForward = false) { |