:11 UTC">4 年 前 link-template.php d01d7cf85d first commit 4 年 前 load.php d01d7cf85d first commit 4 年 前 locale.php d01d7cf85d first commit 4 年 前 media-template.php d01d7cf85d first commit 4 年 前 media.php d01d7cf85d first commit 4 年 前 meta.php d01d7cf85d first commit 4 年 前 ms-blogs.php d01d7cf85d first commit 4 年 前 ms-default-constants.php d01d7cf85d first commit 4 年 前 ms-default-filters.php d01d7cf85d first commit 4 年 前 ms-deprecated.php d01d7cf85d first commit 4 年 前 ms-files.php d01d7cf85d first commit 4 年 前 ms-functions.php d01d7cf85d first commit 4 年 前 ms-load.php d01d7cf85d first commit 4 年 前 ms-network.php d01d7cf85d first commit 4 年 前 ms-settings.php d01d7cf85d first commit 4 年 前 ms-site.php d01d7cf85d first commit 4 年 前 nav-menu-template.php d01d7cf85d first commit 4 年 前 nav-menu.php d01d7cf85d first commit 4 年 前 option.php d01d7cf85d first commit 4 年 前 pluggable-deprecated.php d01d7cf85d first commit 4 年 前 pluggable.php d01d7cf85d first commit 4 年 前 plugin.php d01d7cf85d first commit 4 年 前 post-formats.php d01d7cf85d first commit 4 年 前 post-template.php d01d7cf85d first commit 4 年 前 post-thumbnail-template.php d01d7cf85d first commit 4 年 前 post.php d01d7cf85d first commit 4 年 前 query.php d01d7cf85d first commit 4 年 前 registration-functions.php d01d7cf85d first commit 4 年 前 registration.php d01d7cf85d first commit 4 年 前 rest-api.php d01d7cf85d first commit 4 年 前 revision.php d01d7cf85d first commit 4 年 前 rewrite.php d01d7cf85d first commit 4 年 前 robots-template.php d01d7cf85d first commit 4 年 前 rss-functions.php d01d7cf85d first commit 4 年 前 rss.php d01d7cf85d first commit 4 年 前 script-loader.php d01d7cf85d first commit 4 年 前 session.php d01d7cf85d first commit 4 年 前 shortcodes.php d01d7cf85d first commit 4 年 前 sitemaps.php d01d7cf85d first commit 4 年 前 spl-autoload-compat.php d01d7cf85d first commit 4 年 前 taxonomy.php d01d7cf85d first commit 4 年 前 template-canvas.php d01d7cf85d first commit 4 年 前 template-loader.php d01d7cf85d first commit 4 年 前 template.php d01d7cf85d first commit 4 年 前 theme-i18n.json d01d7cf85d first commit 4 年 前 theme-templates.php d01d7cf85d first commit 4 年 前 theme.json d01d7cf85d first commit 4 年 前 theme.php d01d7cf85d first commit 4 年 前 update.php d01d7cf85d first commit 4 年 前 user.php d01d7cf85d first commit 4 年 前 vars.php d01d7cf85d first commit 4 年 前 version.php d01d7cf85d first commit 4 年 前 widgets.php d01d7cf85d first commit 4 年 前 wlwmanifest.xml d01d7cf85d first commit 4 年 前 wp-db.php d01d7cf85d first commit 4 年 前 wp-diff.php d01d7cf85d first commit 4 年 前 tum/whitesports - Gogs: Simplico Git Service

Нема описа

511.php 536B

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