Mercurial > hg > isophonics-drupal-site
comparison vendor/symfony/browser-kit/Request.php @ 17:129ea1e6d783
Update, including to Drupal core 8.6.10
author | Chris Cannam |
---|---|
date | Thu, 28 Feb 2019 13:21:36 +0000 |
parents | 7a779792577d |
children |
comparison
equal
deleted
inserted
replaced
16:c2387f117808 | 17:129ea1e6d783 |
---|---|
31 * @param array $files An array of uploaded files | 31 * @param array $files An array of uploaded files |
32 * @param array $cookies An array of cookies | 32 * @param array $cookies An array of cookies |
33 * @param array $server An array of server parameters | 33 * @param array $server An array of server parameters |
34 * @param string $content The raw body data | 34 * @param string $content The raw body data |
35 */ | 35 */ |
36 public function __construct($uri, $method, array $parameters = array(), array $files = array(), array $cookies = array(), array $server = array(), $content = null) | 36 public function __construct($uri, $method, array $parameters = [], array $files = [], array $cookies = [], array $server = [], $content = null) |
37 { | 37 { |
38 $this->uri = $uri; | 38 $this->uri = $uri; |
39 $this->method = $method; | 39 $this->method = $method; |
40 $this->parameters = $parameters; | 40 $this->parameters = $parameters; |
41 $this->files = $files; | 41 $this->files = $files; |