tr> tailwind-color-palette 30f7226d9a first commit 3 anni fa tailwindcss 30f7226d9a first commit 3 anni fa thenify 30f7226d9a first commit 3 anni fa thenify-all 30f7226d9a first commit 3 anni fa to-regex-range 30f7226d9a first commit 3 anni fa tr46 30f7226d9a first commit 3 anni fa ts-interface-checker 30f7226d9a first commit 3 anni fa uglify-js 30f7226d9a first commit 3 anni fa underscore 30f7226d9a first commit 3 anni fa upper-case 30f7226d9a first commit 3 anni fa util-deprecate 30f7226d9a first commit 3 anni fa valid-data-url 30f7226d9a first commit 3 anni fa web-resource-inliner 30f7226d9a first commit 3 anni fa webidl-conversions 30f7226d9a first commit 3 anni fa whatwg-url 30f7226d9a first commit 3 anni fa wrap-ansi 30f7226d9a first commit 3 anni fa wrappy 30f7226d9a first commit 3 anni fa y18n 30f7226d9a first commit 3 anni fa yallist 30f7226d9a first commit 3 anni fa yaml 30f7226d9a first commit 3 anni fa yargs 30f7226d9a first commit 3 anni fa yargs-parser 30f7226d9a first commit 3 anni fa .yarn-integrity 30f7226d9a first commit 3 anni fa tum/whitesports - Gogs: Simplico Git Service

Açıklama Yok

405.php 409B

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