summaryrefslogtreecommitdiffstats
path: root/Http/Logout/LogoutSuccessHandlerInterface.php
diff options
context:
space:
mode:
authorJohannes Schmitt <schmittjoh@gmail.com>2011-03-18 18:26:55 +0100
committerJohannes Schmitt <schmittjoh@gmail.com>2011-03-18 18:26:55 +0100
commitdf50cc3b4031f45308ea05f7d40a5327fb8bf295 (patch)
treeef0afd5390b426ef5de123be8017e5b83447e5b2 /Http/Logout/LogoutSuccessHandlerInterface.php
parent66ddc5d30f049972a4ce9ba4b1f1c0206bd78ee9 (diff)
downloadsymfony-security-df50cc3b4031f45308ea05f7d40a5327fb8bf295.zip
symfony-security-df50cc3b4031f45308ea05f7d40a5327fb8bf295.tar.gz
symfony-security-df50cc3b4031f45308ea05f7d40a5327fb8bf295.tar.bz2
[Security] removed un-needed event parameter from many interfaces
Diffstat (limited to 'Http/Logout/LogoutSuccessHandlerInterface.php')
-rw-r--r--Http/Logout/LogoutSuccessHandlerInterface.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/Http/Logout/LogoutSuccessHandlerInterface.php b/Http/Logout/LogoutSuccessHandlerInterface.php
index 21dbb81..e3e80bc 100644
--- a/Http/Logout/LogoutSuccessHandlerInterface.php
+++ b/Http/Logout/LogoutSuccessHandlerInterface.php
@@ -21,9 +21,8 @@ interface LogoutSuccessHandlerInterface
/**
* Creates a Response object to send upon a successful logout.
*
- * @param GetResponseEvent $event
* @param Request $request
* @return Response never null
*/
- function onLogoutSuccess(GetResponseEvent $event, Request $request);
+ function onLogoutSuccess(Request $request);
} \ No newline at end of file