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.
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.
File
-
vendor/
symfony/ dependency-injection/ Compiler/ AbstractRecursivePass.php, line 40
Class
- AbstractRecursivePass
- @author Nicolas Grekas <p@tchwork.com>
Namespace
Symfony\Component\DependencyInjection\CompilerCode
public function process(ContainerBuilder $container) {
$this->container = $container;
try {
$this->processValue($container->getDefinitions(), true);
} finally {
$this->container = null;
}
}