a76680441444d7/app/node_modules/string-width">string-width 30f7226d9a first commit пре 2 година strip-ansi 30f7226d9a first commit пре 2 година sucrase 30f7226d9a first commit пре 2 година supports-preserve-symlinks-flag 30f7226d9a first commit пре 2 година tailwind-color-palette 30f7226d9a first commit пре 2 година tailwindcss 30f7226d9a first commit пре 2 година thenify 30f7226d9a first commit пре 2 година thenify-all 30f7226d9a first commit пре 2 година to-regex-range 30f7226d9a first commit пре 2 година tr46 30f7226d9a first commit пре 2 година ts-interface-checker 30f7226d9a first commit пре 2 година uglify-js 30f7226d9a first commit пре 2 година underscore 30f7226d9a first commit пре 2 година upper-case 30f7226d9a first commit пре 2 година util-deprecate 30f7226d9a first commit пре 2 година valid-data-url 30f7226d9a first commit пре 2 година web-resource-inliner 30f7226d9a first commit пре 2 година webidl-conversions 30f7226d9a first commit пре 2 година whatwg-url 30f7226d9a first commit пре 2 година wrap-ansi 30f7226d9a first commit пре 2 година wrappy 30f7226d9a first commit пре 2 година y18n 30f7226d9a first commit пре 2 година yallist 30f7226d9a first commit пре 2 година yaml 30f7226d9a first commit пре 2 година yargs 30f7226d9a first commit пре 2 година yargs-parser 30f7226d9a first commit пре 2 година .yarn-integrity 30f7226d9a first commit пре 2 година tum/whitesports - Gogs: Simplico Git Service

Nenhuma Descrição

431.php 536B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. /**
  3. * Exception for 431 Request Header Fields Too Large responses
  4. *
  5. * @see https://tools.ietf.org/html/rfc6585
  6. * @package Requests
  7. */
  8. /**
  9. * Exception for 431 Request Header Fields Too Large responses
  10. *
  11. * @see https://tools.ietf.org/html/rfc6585
  12. * @package Requests
  13. */
  14. class Requests_Exception_HTTP_431 extends Requests_Exception_HTTP {
  15. /**
  16. * HTTP status code
  17. *
  18. * @var integer
  19. */
  20. protected $code = 431;
  21. /**
  22. * Reason phrase
  23. *
  24. * @var string
  25. */
  26. protected $reason = 'Request Header Fields Too Large';
  27. }