Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. ResolveHotPathPass.php

function ResolveHotPathPass::process

Overrides AbstractRecursivePass::process

File

vendor/symfony/dependency-injection/Compiler/ResolveHotPathPass.php, line 30

Class

ResolveHotPathPass
Propagate "container.hot_path" tags to referenced services.

Namespace

Symfony\Component\DependencyInjection\Compiler

Code

public function process(ContainerBuilder $container) : void {
    try {
        parent::process($container);
        $container->getDefinition('service_container')
            ->clearTag('container.hot_path');
    } finally {
        $this->resolvedIds = [];
    }
}
RSS feed
Powered by Drupal