This repository has been archived on 2026-07-02. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
HomeIsWhereTheMoneyIs/vendor/symfony/http-kernel/Tests/Exception/NotAcceptableHttpExceptionTest.php
T
2017-05-24 18:35:30 -05:00

14 lines
305 B
PHP
Executable File

<?php
namespace Symfony\Component\HttpKernel\Tests\Exception;
use Symfony\Component\HttpKernel\Exception\NotAcceptableHttpException;
class NotAcceptableHttpExceptionTest extends HttpExceptionTest
{
protected function createException()
{
return new NotAcceptableHttpException();
}
}