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

Geen omschrijving

304.php 391B

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