Mercurial > hg > isophonics-drupal-site
comparison vendor/symfony/dependency-injection/ParameterBag/FrozenParameterBag.php @ 17:129ea1e6d783
Update, including to Drupal core 8.6.10
author | Chris Cannam |
---|---|
date | Thu, 28 Feb 2019 13:21:36 +0000 |
parents | 4c8ae668cc8c |
children |
comparison
equal
deleted
inserted
replaced
16:c2387f117808 | 17:129ea1e6d783 |
---|---|
26 * | 26 * |
27 * This is always the case when used internally. | 27 * This is always the case when used internally. |
28 * | 28 * |
29 * @param array $parameters An array of parameters | 29 * @param array $parameters An array of parameters |
30 */ | 30 */ |
31 public function __construct(array $parameters = array()) | 31 public function __construct(array $parameters = []) |
32 { | 32 { |
33 $this->parameters = $parameters; | 33 $this->parameters = $parameters; |
34 $this->resolved = true; | 34 $this->resolved = true; |
35 } | 35 } |
36 | 36 |