12345678910111213141516171819202122232425262728293031323334 |
- <?php
- /*
- * This file is part of the Symfony framework.
- *
- * (c) Fabien Potencier <fabien@symfony.com>
- *
- * This source file is subject to the MIT license that is bundled
- * with this source code in the file LICENSE.
- */
- namespace Symfony\Component\Security\Http\Authorization;
- use Symfony\Component\HttpFoundation\Request;
- use Symfony\Component\Security\Core\Exception\AccessDeniedException;
- /**
- * This is used by the ExceptionListener to translate an AccessDeniedException
- * to a Response object.
- *
- * @author Johannes M. Schmitt <schmittjoh@gmail.com>
- */
- interface AccessDeniedHandlerInterface
- {
- /**
- * Handles an access denied failure.
- *
- * @param Request $request
- * @param AccessDeniedException $accessDeniedException
- *
- * @return Response may return null
- */
- function handle(Request $request, AccessDeniedException $accessDeniedException);
- }
|