[ Index ] |
PHP Cross Reference of YOURLS |
[Summary view] [Print] [Text view]
1 <?php 2 /** 3 * Exception for 401 Unauthorized responses 4 * 5 * @package Requests\Exceptions 6 */ 7 8 namespace WpOrg\Requests\Exception\Http; 9 10 use WpOrg\Requests\Exception\Http; 11 12 /** 13 * Exception for 401 Unauthorized responses 14 * 15 * @package Requests\Exceptions 16 */ 17 final class Status401 extends Http { 18 /** 19 * HTTP status code 20 * 21 * @var integer 22 */ 23 protected $code = 401; 24 25 /** 26 * Reason phrase 27 * 28 * @var string 29 */ 30 protected $reason = 'Unauthorized'; 31 }
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Tue Jan 21 05:10:11 2025 | Cross-referenced by PHPXref 0.7.1 |