diff options
author | Johannes Schmitt <schmittjoh@gmail.com> | 2011-03-18 18:26:55 +0100 |
---|---|---|
committer | Johannes Schmitt <schmittjoh@gmail.com> | 2011-03-18 18:26:55 +0100 |
commit | df50cc3b4031f45308ea05f7d40a5327fb8bf295 (patch) | |
tree | ef0afd5390b426ef5de123be8017e5b83447e5b2 /Http/Authorization/AccessDeniedHandlerInterface.php | |
parent | 66ddc5d30f049972a4ce9ba4b1f1c0206bd78ee9 (diff) | |
download | symfony-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/Authorization/AccessDeniedHandlerInterface.php')
-rw-r--r-- | Http/Authorization/AccessDeniedHandlerInterface.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Http/Authorization/AccessDeniedHandlerInterface.php b/Http/Authorization/AccessDeniedHandlerInterface.php index c33353b..40576a6 100644 --- a/Http/Authorization/AccessDeniedHandlerInterface.php +++ b/Http/Authorization/AccessDeniedHandlerInterface.php @@ -18,11 +18,10 @@ interface AccessDeniedHandlerInterface /** * Handles an access denied failure. * - * @param GetResponseForExceptionEvent $event * @param Request $request * @param AccessDeniedException $accessDeniedException * * @return Response may return null */ - function handle(GetResponseForExceptionEvent $event, Request $request, AccessDeniedException $accessDeniedException); + function handle(Request $request, AccessDeniedException $accessDeniedException); } |