You are here

class AutoAliasServicePass in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/dependency-injection/Compiler/AutoAliasServicePass.php \Symfony\Component\DependencyInjection\Compiler\AutoAliasServicePass

Sets a service to be an alias of another one, given a format pattern.

Hierarchy

Expanded class hierarchy of AutoAliasServicePass

1 file declares its use of AutoAliasServicePass
AutoAliasServicePassTest.php in vendor/symfony/dependency-injection/Tests/Compiler/AutoAliasServicePassTest.php

File

vendor/symfony/dependency-injection/Compiler/AutoAliasServicePass.php, line 21

Namespace

Symfony\Component\DependencyInjection\Compiler
View source
class AutoAliasServicePass implements CompilerPassInterface {

  /**
   * {@inheritdoc}
   */
  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));
        }
      }
    }
  }

}

Members

Namesort descending Modifiers Type Description Overrides
AutoAliasServicePass::process public function You can modify the container here before it is dumped to PHP code. Overrides CompilerPassInterface::process