public function ContainerBuilder::getCompilerPassConfig in Service Container 7
Same name and namespace in other branches
- 7.2 modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/ContainerBuilder.php \Symfony\Component\DependencyInjection\ContainerBuilder::getCompilerPassConfig()
Returns the compiler pass config which can then be modified.
@api
Return value
PassConfig The compiler pass config
File
- modules/
providers/ service_container_symfony/ lib/ Symfony/ Component/ DependencyInjection/ ContainerBuilder.php, line 334
Class
- ContainerBuilder
- ContainerBuilder is a DI container that provides an API to easily describe services.
Namespace
Symfony\Component\DependencyInjectionCode
public function getCompilerPassConfig() {
return $this
->getCompiler()
->getPassConfig();
}