Update src/Symfony/Component/HttpFoundation/Request.php

[HttpFoundation][Request] Align const
This commit is contained in:
Javier Motos González 2012-12-29 14:43:44 +01:00
parent 79148f3c86
commit 57792629ad

View File

@ -30,10 +30,10 @@ use Symfony\Component\HttpFoundation\Session\SessionInterface;
*/
class Request
{
const HEADER_CLIENT_IP = 'client_ip';
const HEADER_CLIENT_HOST = 'client_host';
const HEADER_CLIENT_IP = 'client_ip';
const HEADER_CLIENT_HOST = 'client_host';
const HEADER_CLIENT_PROTO = 'client_proto';
const HEADER_CLIENT_PORT = 'client_port';
const HEADER_CLIENT_PORT = 'client_port';
protected static $trustProxy = false;