Sets the parameters for this request.
This method also re-initializes all properties.
@api
array $query The GET parameters:
array $request The POST parameters:
array $attributes The request attributes (parameters parsed from the PATH_INFO, ...):
array $cookies The COOKIE parameters:
array $files The FILES parameters:
array $server The SERVER parameters:
string $content The raw body data:
public function initialize(array $query = array(), array $request = array(), array $attributes = array(), array $cookies = array(), array $files = array(), array $server = array(), $content = null) {
$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 = $content;
$this->languages = null;
$this->charsets = null;
$this->acceptableContentTypes = null;
$this->pathInfo = null;
$this->requestUri = null;
$this->baseUrl = null;
$this->basePath = null;
$this->method = null;
$this->format = null;
}