This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Component/HttpKernel/Tests/Exception/PreconditionRequiredHttpExceptionTest.php

14 lines
326 B
PHP
Raw Normal View History

<?php
namespace Symfony\Component\HttpKernel\Tests\Exception;
use Symfony\Component\HttpKernel\Exception\PreconditionRequiredHttpException;
class PreconditionRequiredHttpExceptionTest extends HttpExceptionTest
{
2016-01-25 11:33:17 +00:00
protected function createException()
{
2016-01-25 11:33:17 +00:00
return new PreconditionRequiredHttpException();
}
}