d48e5309f57e811e38322f">30f7226d9a first commit 3 gadi atpakaļ once 30f7226d9a first commit 3 gadi atpakaļ paper-css 30f7226d9a first commit 3 gadi atpakaļ param-case 30f7226d9a first commit 3 gadi atpakaļ parse5 30f7226d9a first commit 3 gadi atpakaļ parse5-htmlparser2-tree-adapter 30f7226d9a first commit 3 gadi atpakaļ path-is-absolute 30f7226d9a first commit 3 gadi atpakaļ path-parse 30f7226d9a first commit 3 gadi atpakaļ picocolors 30f7226d9a first commit 3 gadi atpakaļ picomatch 30f7226d9a first commit 3 gadi atpakaļ pify 30f7226d9a first commit 3 gadi atpakaļ pirates 30f7226d9a first commit 3 gadi atpakaļ postcss 30f7226d9a first commit 3 gadi atpakaļ postcss-import 30f7226d9a first commit 3 gadi atpakaļ postcss-js 30f7226d9a first commit 3 gadi atpakaļ postcss-load-config 30f7226d9a first commit 3 gadi atpakaļ postcss-nested 30f7226d9a first commit 3 gadi atpakaļ postcss-selector-parser 30f7226d9a first commit 3 gadi atpakaļ postcss-value-parser 30f7226d9a first commit 3 gadi atpakaļ proto-list 30f7226d9a first commit 3 gadi atpakaļ proxy-from-env 30f7226d9a first commit 3 gadi atpakaļ queue-microtask 30f7226d9a first commit 3 gadi atpakaļ read-cache 30f7226d9a first commit 3 gadi atpakaļ readdirp 30f7226d9a first commit 3 gadi atpakaļ regenerator-runtime 30f7226d9a first commit 3 gadi atpakaļ relateurl 30f7226d9a first commit 3 gadi atpakaļ require-directory 30f7226d9a first commit 3 gadi atpakaļ resolve 30f7226d9a first commit 3 gadi atpakaļ reusify 30f7226d9a first commit 3 gadi atpakaļ run-parallel 30f7226d9a first commit 3 gadi atpakaļ semver 30f7226d9a first commit 3 gadi atpakaļ slick 30f7226d9a first commit 3 gadi atpakaļ slick-carousel 30f7226d9a first commit 3 gadi atpakaļ sortablejs 30f7226d9a first commit 3 gadi atpakaļ source-map 30f7226d9a first commit 3 gadi atpakaļ source-map-js 30f7226d9a first commit 3 gadi atpakaļ string-width 30f7226d9a first commit 3 gadi atpakaļ strip-ansi 30f7226d9a first commit 3 gadi atpakaļ sucrase 30f7226d9a first commit 3 gadi atpakaļ supports-preserve-symlinks-flag 30f7226d9a first commit 3 gadi atpakaļ tailwind-color-palette 30f7226d9a first commit 3 gadi atpakaļ tailwindcss 30f7226d9a first commit 3 gadi atpakaļ thenify 30f7226d9a first commit 3 gadi atpakaļ thenify-all 30f7226d9a first commit 3 gadi atpakaļ to-regex-range 30f7226d9a first commit 3 gadi atpakaļ tr46 30f7226d9a first commit 3 gadi atpakaļ ts-interface-checker 30f7226d9a first commit 3 gadi atpakaļ uglify-js 30f7226d9a first commit 3 gadi atpakaļ underscore 30f7226d9a first commit 3 gadi atpakaļ upper-case 30f7226d9a first commit 3 gadi atpakaļ util-deprecate 30f7226d9a first commit 3 gadi atpakaļ valid-data-url 30f7226d9a first commit 3 gadi atpakaļ web-resource-inliner 30f7226d9a first commit 3 gadi atpakaļ webidl-conversions 30f7226d9a first commit 3 gadi atpakaļ whatwg-url 30f7226d9a first commit 3 gadi atpakaļ wrap-ansi 30f7226d9a first commit 3 gadi atpakaļ wrappy 30f7226d9a first commit 3 gadi atpakaļ y18n 30f7226d9a first commit 3 gadi atpakaļ yallist 30f7226d9a first commit 3 gadi atpakaļ yaml 30f7226d9a first commit 3 gadi atpakaļ yargs 30f7226d9a first commit 3 gadi atpakaļ yargs-parser 30f7226d9a first commit 3 gadi atpakaļ .yarn-integrity 30f7226d9a first commit 3 gadi atpakaļ tum/whitesports - Gogs: Simplico Git Service

Sin descripción

411.php 400B

12345678910111213141516171819202122232425262728
  1. <?php
  2. /**
  3. * Exception for 411 Length Required responses
  4. *
  5. * @package Requests
  6. */
  7. /**
  8. * Exception for 411 Length Required responses
  9. *
  10. * @package Requests
  11. */
  12. class Requests_Exception_HTTP_411 extends Requests_Exception_HTTP {
  13. /**
  14. * HTTP status code
  15. *
  16. * @var integer
  17. */
  18. protected $code = 411;
  19. /**
  20. * Reason phrase
  21. *
  22. * @var string
  23. */
  24. protected $reason = 'Length Required';
  25. }