an class="time-since" title="Sat, 16 Sep 2023 07:03:00 UTC">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

Sin descripción

415.php 421B

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