public function AutoAliasServicePass::process in Service Container 7
Same name and namespace in other branches
- 7.2 modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/Compiler/AutoAliasServicePass.php \Symfony\Component\DependencyInjection\Compiler\AutoAliasServicePass::process()
You can modify the container here before it is dumped to PHP code.
@api
Parameters
ContainerBuilder $container:
Overrides CompilerPassInterface::process
File
- modules/
providers/ service_container_symfony/ lib/ Symfony/ Component/ DependencyInjection/ Compiler/ AutoAliasServicePass.php, line 26
Class
- AutoAliasServicePass
- Sets a service to be an alias of another one, given a format pattern.
Namespace
Symfony\Component\DependencyInjection\CompilerCode
public function process(ContainerBuilder $container) {
foreach ($container
->findTaggedServiceIds('auto_alias') as $serviceId => $tags) {
foreach ($tags as $tag) {
if (!isset($tag['format'])) {
throw new InvalidArgumentException(sprintf('Missing tag information "format" on auto_alias service "%s".', $serviceId));
}
$aliasId = $container
->getParameterBag()
->resolveValue($tag['format']);
if ($container
->hasDefinition($aliasId) || $container
->hasAlias($aliasId)) {
$container
->setAlias($serviceId, new Alias($aliasId));
}
}
}
}