public function Request::initialize in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/http-foundation/Request.php \Symfony\Component\HttpFoundation\Request::initialize()
Sets the parameters for this request.
This method also re-initializes all properties.
Parameters
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|resource $content The raw body data:
1 call to Request::initialize()
- Request::__construct in vendor/symfony/ http-foundation/ Request.php 
- Constructor.
File
- vendor/symfony/ http-foundation/ Request.php, line 237 
Class
- Request
- Request represents an HTTP request.
Namespace
Symfony\Component\HttpFoundationCode
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->encodings = null;
  $this->acceptableContentTypes = null;
  $this->pathInfo = null;
  $this->requestUri = null;
  $this->baseUrl = null;
  $this->basePath = null;
  $this->method = null;
  $this->format = null;
}