酒店预订平台
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

ConflictingHeadersException.php 527 B

3 år sedan
123456789101112131415161718192021
  1. <?php
  2. /*
  3. * This file is part of the Symfony package.
  4. *
  5. * (c) Fabien Potencier <fabien@symfony.com>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. namespace Symfony\Component\HttpFoundation\Exception;
  11. /**
  12. * The HTTP request contains headers with conflicting information.
  13. *
  14. * @author Magnus Nordlander <magnus@fervo.se>
  15. */
  16. class ConflictingHeadersException extends \UnexpectedValueException implements RequestExceptionInterface
  17. {
  18. }