summaryrefslogtreecommitdiffstats
path: root/Http/Authentication/DefaultAuthenticationSuccessHandler.php
diff options
context:
space:
mode:
authorAlexander <iam.asm89@gmail.com>2012-06-21 09:49:20 +0200
committerAlexander <iam.asm89@gmail.com>2012-07-08 19:59:10 +0200
commitb13c20333403768a1905a43acad7fa2dc1772a25 (patch)
treead0352d9e6e81f095ef4eb0c669ab7c4fd208dda /Http/Authentication/DefaultAuthenticationSuccessHandler.php
parent15dea5261261c3700c97787df9b6888b978dbac3 (diff)
downloadsymfony-security-b13c20333403768a1905a43acad7fa2dc1772a25.zip
symfony-security-b13c20333403768a1905a43acad7fa2dc1772a25.tar.gz
symfony-security-b13c20333403768a1905a43acad7fa2dc1772a25.tar.bz2
[Security] Add note to CHANGELOG about refactored authentication failure/success handling [Security] Various CS + doc fixes [Security] Exception when authentication failure/success handlers do not return a response [Security] Add authors + fix docblock
Diffstat (limited to 'Http/Authentication/DefaultAuthenticationSuccessHandler.php')
-rw-r--r--Http/Authentication/DefaultAuthenticationSuccessHandler.php11
1 files changed, 3 insertions, 8 deletions
diff --git a/Http/Authentication/DefaultAuthenticationSuccessHandler.php b/Http/Authentication/DefaultAuthenticationSuccessHandler.php
index 8139786..88dcf68 100644
--- a/Http/Authentication/DefaultAuthenticationSuccessHandler.php
+++ b/Http/Authentication/DefaultAuthenticationSuccessHandler.php
@@ -21,24 +21,19 @@ use Symfony\Component\Security\Http\HttpUtils;
* Can be optionally be extended from by the developer to alter the behaviour
* while keeping the default behaviour.
*
+ * @author Fabien Potencier <fabien@symfony.com>
+ * @author Johannes M. Schmitt <schmittjoh@gmail.com>
* @author Alexander <iam.asm89@gmail.com>
*/
class DefaultAuthenticationSuccessHandler implements AuthenticationSuccessHandlerInterface
{
- /**
- * @var HttpUtils
- */
protected $httpUtils;
-
- /**
- * @var array
- */
protected $options;
/**
* Constructor.
*
- * @param HttpUtils $httpUtils HttpUtils
+ * @param HttpUtils $httpUtils
* @param array $options Options for processing a successful authentication attempt.
*/
public function __construct(HttpUtils $httpUtils, array $options)