diff options
author | Fabien Potencier <fabien.potencier@gmail.com> | 2013-09-29 21:41:41 +0200 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2013-09-29 21:41:41 +0200 |
commit | 8969dd88b7a4c3e60cee10ad4094dcd05de62965 (patch) | |
tree | 04fff6aa504af1451eebca510ea605cfe3e498d0 /Http/EntryPoint/RetryAuthenticationEntryPoint.php | |
parent | 83cd64d415724127bd0db09ef1431e19a53afdea (diff) | |
parent | 974b6da0d0f1f602f80280604eff38a829c23814 (diff) | |
download | symfony-security-8969dd88b7a4c3e60cee10ad4094dcd05de62965.zip symfony-security-8969dd88b7a4c3e60cee10ad4094dcd05de62965.tar.gz symfony-security-8969dd88b7a4c3e60cee10ad4094dcd05de62965.tar.bz2 |
Merge branch '2.2' into 2.3
* 2.2:
fixed Client when using the terminable event
Fix problem with Windows file links (backslash in JavaScript string)
[Security] fixed wrong phpdoc
[Routing] removed extra argument
[HttpFoundation] Header `HTTP_X_FORWARDED_PROTO` can contain various values Some proxies use `ssl` instead of `https`, as well as Lighttpd mod_proxy allows value chaining (`https, http`, where `https` is always first when request is encrypted).
Added doc comments
Conflicts:
src/Symfony/Component/HttpFoundation/Request.php
Diffstat (limited to 'Http/EntryPoint/RetryAuthenticationEntryPoint.php')
-rw-r--r-- | Http/EntryPoint/RetryAuthenticationEntryPoint.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Http/EntryPoint/RetryAuthenticationEntryPoint.php b/Http/EntryPoint/RetryAuthenticationEntryPoint.php index 532601a..091e0ee 100644 --- a/Http/EntryPoint/RetryAuthenticationEntryPoint.php +++ b/Http/EntryPoint/RetryAuthenticationEntryPoint.php @@ -34,6 +34,9 @@ class RetryAuthenticationEntryPoint implements AuthenticationEntryPointInterface $this->httpsPort = $httpsPort; } + /** + * {@inheritdoc} + */ public function start(Request $request, AuthenticationException $authException = null) { $scheme = $request->isSecure() ? 'http' : 'https'; |