equal
deleted
inserted
replaced
|
1 <?php |
|
2 /** |
|
3 * Exception for 407 Proxy Authentication Required 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 407 Proxy Authentication Required responses |
|
14 * |
|
15 * @package Requests\Exceptions |
|
16 */ |
|
17 final class Status407 extends Http { |
|
18 /** |
|
19 * HTTP status code |
|
20 * |
|
21 * @var integer |
|
22 */ |
|
23 protected $code = 407; |
|
24 |
|
25 /** |
|
26 * Reason phrase |
|
27 * |
|
28 * @var string |
|
29 */ |
|
30 protected $reason = 'Proxy Authentication Required'; |
|
31 } |