diff options
author | Fabien Potencier <fabien.potencier@gmail.com> | 2012-07-26 08:13:41 +0200 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2012-07-26 08:13:41 +0200 |
commit | c923c63b1ba6dc48b2bd813c60035e3c2b5b3898 (patch) | |
tree | cf9f033986769bb8320723f66ea910d16d100ff9 /Http | |
parent | f4288226ea5d8def11059e0787d29a80e187b85b (diff) | |
download | symfony-security-c923c63b1ba6dc48b2bd813c60035e3c2b5b3898.zip symfony-security-c923c63b1ba6dc48b2bd813c60035e3c2b5b3898.tar.gz symfony-security-c923c63b1ba6dc48b2bd813c60035e3c2b5b3898.tar.bz2 |
[Security] tweaked previous merge
Diffstat (limited to 'Http')
-rw-r--r-- | Http/Event/InteractiveLoginEvent.php | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/Http/Event/InteractiveLoginEvent.php b/Http/Event/InteractiveLoginEvent.php index d4c12df..2225d92 100644 --- a/Http/Event/InteractiveLoginEvent.php +++ b/Http/Event/InteractiveLoginEvent.php @@ -17,21 +17,15 @@ use Symfony\Component\Security\Core\Authentication\Token\TokenInterface; 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) { @@ -42,7 +36,7 @@ class InteractiveLoginEvent extends Event /** * Gets the request. * - * @return Request + * @return Request A Request instance */ public function getRequest() { @@ -52,7 +46,7 @@ class InteractiveLoginEvent extends Event /** * Gets the authentication token. * - * @return TokenInterface + * @return TokenInterface A TokenInterface instance */ public function getAuthenticationToken() { |