merged branch Seldaek/req_time (PR #1432)

Commits
-------

e80ce57 [HttpFoundation] Add REQUEST_TIME by default

Discussion
----------

[HttpFoundation] Add REQUEST_TIME by default

Without this the getting the REQUEST_TIME from the Request in tests is breaking.
This commit is contained in:
Fabien Potencier 2011-06-25 13:26:06 +02:00
commit ea0f327122

View File

@ -166,6 +166,7 @@ class Request
'SCRIPT_NAME' => '',
'SCRIPT_FILENAME' => '',
'SERVER_PROTOCOL' => 'HTTP/1.1',
'REQUEST_TIME' => time(),
);
$components = parse_url($uri);