run:R W Run
460 By
2026-03-11 16:18:52
R W Run
451 By
2026-03-11 16:18:52
R W Run
460 By
2026-03-11 16:18:52
R W Run
457 By
2026-03-11 16:18:52
R W Run
460 By
2026-03-11 16:18:52
R W Run
472 By
2026-03-11 16:18:52
R W Run
451 By
2026-03-11 16:18:52
R W Run
451 By
2026-03-11 16:18:52
R W Run
478 By
2026-03-11 16:18:52
R W Run
466 By
2026-03-11 16:18:52
R W Run
511 By
2026-03-11 16:18:52
R W Run
469 By
2026-03-11 16:18:52
R W Run
448 By
2026-03-11 16:18:52
R W Run
436 By
2026-03-11 16:18:52
R W Run
469 By
2026-03-11 16:18:52
R W Run
481 By
2026-03-11 16:18:52
R W Run
496 By
2026-03-11 16:18:52
R W Run
487 By
2026-03-11 16:18:52
R W Run
490 By
2026-03-11 16:18:52
R W Run
517 By
2026-03-11 16:18:52
R W Run
478 By
2026-03-11 16:18:52
R W Run
556 By
2026-03-11 16:18:52
R W Run
583 By
2026-03-11 16:18:52
R W Run
627 By
2026-03-11 16:18:52
R W Run
613 By
2026-03-11 16:18:52
R W Run
487 By
2026-03-11 16:18:52
R W Run
469 By
2026-03-11 16:18:52
R W Run
457 By
2026-03-11 16:18:52
R W Run
481 By
2026-03-11 16:18:52
R W Run
469 By
2026-03-11 16:18:52
R W Run
502 By
2026-03-11 16:18:52
R W Run
613 By
2026-03-11 16:18:52
R W Run
970 By
2026-03-11 16:18:52
R W Run
error_log
📄Status511.php
1<?php
2/**
3 * Exception for 511 Network Authentication Required responses
4 *
5 * @link https://tools.ietf.org/html/rfc6585
6 *
7 * @package Requests\Exceptions
8 */
9
10namespace WpOrg\Requests\Exception\Http;
11
12use WpOrg\Requests\Exception\Http;
13
14/**
15 * Exception for 511 Network Authentication Required responses
16 *
17 * @link https://tools.ietf.org/html/rfc6585
18 *
19 * @package Requests\Exceptions
20 */
21final class Status511 extends Http {
22 /**
23 * HTTP status code
24 *
25 * @var integer
26 */
27 protected $code = 511;
28
29 /**
30 * Reason phrase
31 *
32 * @var string
33 */
34 protected $reason = 'Network Authentication Required';
35}
36