diff options
Diffstat (limited to 'vendor/symfony/http-kernel/Tests/Exception/PreconditionFailedHttpExceptionTest.php')
| -rw-r--r-- | vendor/symfony/http-kernel/Tests/Exception/PreconditionFailedHttpExceptionTest.php | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/vendor/symfony/http-kernel/Tests/Exception/PreconditionFailedHttpExceptionTest.php b/vendor/symfony/http-kernel/Tests/Exception/PreconditionFailedHttpExceptionTest.php new file mode 100644 index 0000000000..809252b757 --- /dev/null +++ b/vendor/symfony/http-kernel/Tests/Exception/PreconditionFailedHttpExceptionTest.php @@ -0,0 +1,13 @@ +<?php + +namespace Symfony\Component\HttpKernel\Tests\Exception; + +use Symfony\Component\HttpKernel\Exception\PreconditionFailedHttpException; + +class PreconditionFailedHttpExceptionTest extends HttpExceptionTest +{ + protected function createException() + { + return new PreconditionFailedHttpException(); + } +} |
