Jelajahi Sumber

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.
Fabien Potencier 14 tahun lalu
induk
melakukan
ea0f327122
1 mengubah file dengan 1 tambahan dan 0 penghapusan
  1. 1 0
      src/Symfony/Component/HttpFoundation/Request.php

+ 1 - 0
src/Symfony/Component/HttpFoundation/Request.php

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