updated bootstrap file

This commit is contained in:
Fabien Potencier 2011-01-28 10:11:09 +01:00
parent ebd2ca6cfe
commit 01439d5f14

View File

@ -1208,18 +1208,18 @@ class Request
protected $format;
protected $session;
static protected $formats;
public function __construct(array $query = null, array $request = null, array $attributes = null, array $cookies = null, array $files = null, array $server = null)
public function __construct(array $query = array(), array $request = array(), array $attributes = array(), array $cookies = array(), array $files = array(), array $server = array())
{
$this->initialize($query, $request, $attributes, $cookies, $files, $server);
}
public function initialize(array $query = null, array $request = null, array $attributes = null, array $cookies = null, array $files = null, array $server = null)
public function initialize(array $query = array(), array $request = array(), array $attributes = array(), array $cookies = array(), array $files = array(), array $server = array())
{
$this->request = new ParameterBag(null !== $request ? $request : $_POST);
$this->query = new ParameterBag(null !== $query ? $query : $_GET);
$this->attributes = new ParameterBag(null !== $attributes ? $attributes : array());
$this->cookies = new ParameterBag(null !== $cookies ? $cookies : $_COOKIE);
$this->files = new FileBag(null !== $files ? $files : $_FILES);
$this->server = new ServerBag(null !== $server ? $server : $_SERVER);
$this->request = new ParameterBag($request);
$this->query = new ParameterBag($query);
$this->attributes = new ParameterBag($attributes);
$this->cookies = new ParameterBag($cookies);
$this->files = new FileBag($files);
$this->server = new ServerBag($server);
$this->headers = new HeaderBag($this->server->getHeaders());
$this->content = null;
$this->languages = null;
@ -1232,6 +1232,10 @@ class Request
$this->method = null;
$this->format = null;
}
static public function createfromGlobals()
{
return new static($_GET, $_POST, array(), $_COOKIE, $_FILES, $_SERVER);
}
static public function create($uri, $method = 'GET', $parameters = array(), $cookies = array(), $files = array(), $server = array())
{
$defaults = array(