comparison vendor/symfony/http-foundation/ParameterBag.php @ 14:1fec387a4317

Update Drupal core to 8.5.2 via Composer
author Chris Cannam
date Mon, 23 Apr 2018 09:46:53 +0100
parents 4c8ae668cc8c
children 129ea1e6d783
comparison
equal deleted inserted replaced
13:5fb285c0d0e3 14:1fec387a4317
18 */ 18 */
19 class ParameterBag implements \IteratorAggregate, \Countable 19 class ParameterBag implements \IteratorAggregate, \Countable
20 { 20 {
21 /** 21 /**
22 * Parameter storage. 22 * Parameter storage.
23 *
24 * @var array
25 */ 23 */
26 protected $parameters; 24 protected $parameters;
27 25
28 /** 26 /**
29 * Constructor.
30 *
31 * @param array $parameters An array of parameters 27 * @param array $parameters An array of parameters
32 */ 28 */
33 public function __construct(array $parameters = array()) 29 public function __construct(array $parameters = array())
34 { 30 {
35 $this->parameters = $parameters; 31 $this->parameters = $parameters;