diff options
author | Fabien Potencier <fabien.potencier@gmail.com> | 2014-04-12 19:44:00 +0200 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2014-04-13 20:00:14 +0200 |
commit | b2718821b6325d65b9b51eecb671f84605716af6 (patch) | |
tree | a1d603aec75010840b2a53601dac6fd7d0ac9d99 /Http/EntryPoint | |
parent | 11c6ba069dbe07aa890760544e38585581a2ee6e (diff) | |
download | symfony-security-b2718821b6325d65b9b51eecb671f84605716af6.zip symfony-security-b2718821b6325d65b9b51eecb671f84605716af6.tar.gz symfony-security-b2718821b6325d65b9b51eecb671f84605716af6.tar.bz2 |
made 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 b78f0a9..06df099 100644 --- a/Http/EntryPoint/FormAuthenticationEntryPoint.php +++ b/Http/EntryPoint/FormAuthenticationEntryPoint.php @@ -41,7 +41,7 @@ class FormAuthenticationEntryPoint implements AuthenticationEntryPointInterface $this->httpKernel = $kernel; $this->httpUtils = $httpUtils; $this->loginPath = $loginPath; - $this->useForward = (Boolean) $useForward; + $this->useForward = (bool) $useForward; } /** |