/**
* Gets the private 'factory_simple' shared service.
*
* @return \SimpleFactoryClass
*
* @deprecated Since vendor/package 1.1: The "factory_simple" service is deprecated. You should stop using it, as it will be removed in the future.
*/
protected static function getFactorySimpleService($container) { trigger_deprecation('vendor/package', '1.1', 'The "factory_simple" service is deprecated. You should stop using it, as it will be removed in the future.'
);
return new \
SimpleFactoryClass('foo'
);
} public function getParameter(string
$name): array|bool|string|int|float|\UnitEnum|null
{ if (!
(isset($this->parameters
[$name]) ||
isset($this->loadedDynamicParameters
[$name]) || \
array_key_exists($name,
$this->parameters
))) { throw new ParameterNotFoundException($name);
} if (isset($this->loadedDynamicParameters
[$name])) { return $this->loadedDynamicParameters
[$name] ?
$this->dynamicParameters
[$name] :
$this->
getDynamicParameter($name);
}