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