提交代码
This commit is contained in:
13
vendor/symfony/http-kernel/Tests/Exception/ConflictHttpExceptionTest.php
vendored
Normal file
13
vendor/symfony/http-kernel/Tests/Exception/ConflictHttpExceptionTest.php
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
namespace Symfony\Component\HttpKernel\Tests\Exception;
|
||||
|
||||
use Symfony\Component\HttpKernel\Exception\ConflictHttpException;
|
||||
|
||||
class ConflictHttpExceptionTest extends HttpExceptionTest
|
||||
{
|
||||
protected function createException(string $message = null, \Throwable $previous = null, ?int $code = 0, array $headers = [])
|
||||
{
|
||||
return new ConflictHttpException($message, $previous, $code, $headers);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user