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

Breadcrumb

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

function AbstractRecursivePass::process

Return value

void

Overrides CompilerPassInterface::process

22 calls to AbstractRecursivePass::process()
AliasDeprecatedPublicServicesPass::process in vendor/symfony/dependency-injection/Compiler/AliasDeprecatedPublicServicesPass.php
You can modify the container here before it is dumped to PHP code.
AliasDeprecatedPublicServicesPass::process in vendor/symfony/dependency-injection/Compiler/AliasDeprecatedPublicServicesPass.php
You can modify the container here before it is dumped to PHP code.
AnalyzeServiceReferencesPass::process in vendor/symfony/dependency-injection/Compiler/AnalyzeServiceReferencesPass.php
Processes a ContainerBuilder object to populate the service reference graph.
AnalyzeServiceReferencesPass::process in vendor/symfony/dependency-injection/Compiler/AnalyzeServiceReferencesPass.php
Processes a ContainerBuilder object to populate the service reference graph.
AttributeAutoconfigurationPass::process in vendor/symfony/dependency-injection/Compiler/AttributeAutoconfigurationPass.php
You can modify the container here before it is dumped to PHP code.

... See full list

15 methods override AbstractRecursivePass::process()
AliasDeprecatedPublicServicesPass::process in vendor/symfony/dependency-injection/Compiler/AliasDeprecatedPublicServicesPass.php
You can modify the container here before it is dumped to PHP code.
AnalyzeServiceReferencesPass::process in vendor/symfony/dependency-injection/Compiler/AnalyzeServiceReferencesPass.php
Processes a ContainerBuilder object to populate the service reference graph.
AttributeAutoconfigurationPass::process in vendor/symfony/dependency-injection/Compiler/AttributeAutoconfigurationPass.php
You can modify the container here before it is dumped to PHP code.
AutowirePass::process in vendor/symfony/dependency-injection/Compiler/AutowirePass.php
You can modify the container here before it is dumped to PHP code.
CheckExceptionOnInvalidReferenceBehaviorPass::process in vendor/symfony/dependency-injection/Compiler/CheckExceptionOnInvalidReferenceBehaviorPass.php
You can modify the container here before it is dumped to PHP code.

... See full list

File

vendor/symfony/dependency-injection/Compiler/AbstractRecursivePass.php, line 40

Class

AbstractRecursivePass
@author Nicolas Grekas <p@tchwork.com>

Namespace

Symfony\Component\DependencyInjection\Compiler

Code

public function process(ContainerBuilder $container) {
    $this->container = $container;
    try {
        $this->processValue($container->getDefinitions(), true);
    } finally {
        $this->container = null;
    }
}

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal