public function ContainerBuilder::getCompilerPassConfig in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/dependency-injection/ContainerBuilder.php \Symfony\Component\DependencyInjection\ContainerBuilder::getCompilerPassConfig()
 
Returns the compiler pass config which can then be modified.
Return value
PassConfig The compiler pass config
File
- vendor/
symfony/ dependency-injection/ ContainerBuilder.php, line 310  
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();
}