mirror of
https://gh.wpcy.net/https://github.com/rilustrisimo/freescout-support.git
synced 2026-05-05 10:12:15 +08:00
13 lines
302 B
PHP
13 lines
302 B
PHP
<?php
|
|
|
|
namespace Symfony\Component\HttpKernel\Tests\Exception;
|
|
|
|
use Symfony\Component\HttpKernel\Exception\AccessDeniedHttpException;
|
|
|
|
class AccessDeniedHttpExceptionTest extends HttpExceptionTest
|
|
{
|
|
protected function createException()
|
|
{
|
|
return new AccessDeniedHttpException();
|
|
}
|
|
}
|