Skip to content
This repository has been archived by the owner on Apr 29, 2024. It is now read-only.

Commit

Permalink
[Security] tweaked previous merge
Browse files Browse the repository at this point in the history
  • Loading branch information
fabpot committed Jul 26, 2012
1 parent f428822 commit c923c63
Showing 1 changed file with 4 additions and 10 deletions.
14 changes: 4 additions & 10 deletions Http/Event/InteractiveLoginEvent.php
Expand Up @@ -17,21 +17,15 @@

class InteractiveLoginEvent extends Event
{
/**
* @var Request
*/
private $request;

/**
* @var TokenInterface
*/
private $authenticationToken;

/**
* Constructor.
*
* @param Request $request
* @param TokenInterface $authenticationToken
* @param Request $request A Request instance
* @param TokenInterface $authenticationToken A TokenInterface instance
*/
public function __construct(Request $request, TokenInterface $authenticationToken)
{
Expand All @@ -42,7 +36,7 @@ public function __construct(Request $request, TokenInterface $authenticationToke
/**
* Gets the request.
*
* @return Request
* @return Request A Request instance
*/
public function getRequest()
{
Expand All @@ -52,7 +46,7 @@ public function getRequest()
/**
* Gets the authentication token.
*
* @return TokenInterface
* @return TokenInterface A TokenInterface instance
*/
public function getAuthenticationToken()
{
Expand Down

0 comments on commit c923c63

Please sign in to comment.