diff options
author | Fabien Potencier <fabien.potencier@gmail.com> | 2016-06-29 07:40:00 +0200 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2016-06-29 07:40:00 +0200 |
commit | a06fcc9cfb7b9d1b51b59952df65ad8fcfdf17ac (patch) | |
tree | 85ca2b17240e7247e687cbd4e1cda1875bbb1278 /Http | |
parent | d1fe507f6dd2dc7c2349ce6b506af21545a7b386 (diff) | |
parent | 523bf2714a038020ed98410525ab71908e250a0d (diff) | |
download | symfony-security-a06fcc9cfb7b9d1b51b59952df65ad8fcfdf17ac.zip symfony-security-a06fcc9cfb7b9d1b51b59952df65ad8fcfdf17ac.tar.gz symfony-security-a06fcc9cfb7b9d1b51b59952df65ad8fcfdf17ac.tar.bz2 |
Merge branch '2.8' into 3.0v3.0.8
* 2.8:
fixed CS
fixed form tests
[Console] Fix formatting of SymfonyStyle::comment()
[Form] fix post max size translation type extension for >= 2.8
removed dots at the end of @param and @return
fixed typo
Diffstat (limited to 'Http')
-rw-r--r-- | Http/Authentication/DefaultAuthenticationFailureHandler.php | 2 | ||||
-rw-r--r-- | Http/Authentication/DefaultAuthenticationSuccessHandler.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Http/Authentication/DefaultAuthenticationFailureHandler.php b/Http/Authentication/DefaultAuthenticationFailureHandler.php index 3e63992..ea5c356 100644 --- a/Http/Authentication/DefaultAuthenticationFailureHandler.php +++ b/Http/Authentication/DefaultAuthenticationFailureHandler.php @@ -47,7 +47,7 @@ class DefaultAuthenticationFailureHandler implements AuthenticationFailureHandle * * @param HttpKernelInterface $httpKernel * @param HttpUtils $httpUtils - * @param array $options Options for processing a failed authentication attempt. + * @param array $options Options for processing a failed authentication attempt * @param LoggerInterface $logger Optional logger */ public function __construct(HttpKernelInterface $httpKernel, HttpUtils $httpUtils, array $options = array(), LoggerInterface $logger = null) diff --git a/Http/Authentication/DefaultAuthenticationSuccessHandler.php b/Http/Authentication/DefaultAuthenticationSuccessHandler.php index 078a366..bfc0c8b 100644 --- a/Http/Authentication/DefaultAuthenticationSuccessHandler.php +++ b/Http/Authentication/DefaultAuthenticationSuccessHandler.php @@ -40,7 +40,7 @@ class DefaultAuthenticationSuccessHandler implements AuthenticationSuccessHandle * Constructor. * * @param HttpUtils $httpUtils - * @param array $options Options for processing a successful authentication attempt. + * @param array $options Options for processing a successful authentication attempt */ public function __construct(HttpUtils $httpUtils, array $options = array()) { |