You appear to be a bot. Output may be restricted
Description
{@inheritdoc}
Usage
ParameterBag::resolve();
Parameters
Returns
void
Source
File name: wordpress-seo/vendor_prefixed/symfony/dependency-injection/ParameterBag/ParameterBag.php
Lines:
1 to 19 of 19
public function resolve() { if ($this->resolved) { return; } $parameters = []; foreach ($this->parameters as $key => $value) { try { $value = $this->resolveValue($value); $parameters[$key] = $this->unescapeValue($value); } catch (\YoastSEO_Vendor\Symfony\Component\DependencyInjection\Exception\ParameterNotFoundException $e) { $e->setSourceKey($key); throw $e; } } $this->parameters = $parameters; $this->resolved = \true; }