12345678910111213 |
- <?php
-
- namespace Symfony\Component\HttpKernel\Tests\Exception;
-
- use Symfony\Component\HttpKernel\Exception\AccessDeniedHttpException;
-
- class AccessDeniedHttpExceptionTest extends HttpExceptionTest
- {
- protected function createException(string $message = null, \Throwable $previous = null, ?int $code = 0, array $headers = [])
- {
- return new AccessDeniedHttpException($message, $previous, $code, $headers);
- }
- }
|