1 | <?php |
||
8 | class TrustProxies extends Middleware |
||
9 | { |
||
10 | /** |
||
11 | * The trusted proxies for this application. |
||
12 | * |
||
13 | * @var array|string |
||
14 | */ |
||
15 | protected $proxies; |
||
16 | |||
17 | /** |
||
18 | * The headers that should be used to detect proxies. |
||
19 | * |
||
20 | * @var int |
||
21 | */ |
||
22 | protected $headers = Request::HEADER_X_FORWARDED_ALL; |
||
|
|||
23 | } |
||
24 |
This class constant has been deprecated. The supplier of the class has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the constant will be removed from the class and what other constant to use instead.