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