Dashboard sipadu mbip
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

PreconditionFailedHttpExceptionTest.php 444B

12345678910111213
  1. <?php
  2. namespace Symfony\Component\HttpKernel\Tests\Exception;
  3. use Symfony\Component\HttpKernel\Exception\PreconditionFailedHttpException;
  4. class PreconditionFailedHttpExceptionTest extends HttpExceptionTest
  5. {
  6. protected function createException(string $message = null, \Throwable $previous = null, ?int $code = 0, array $headers = [])
  7. {
  8. return new PreconditionFailedHttpException($message, $previous, $code, $headers);
  9. }
  10. }