protected function Kernel::getContainerBuilder

Gets a new ContainerBuilder instance used to build the service container.

Return value

ContainerBuilder

1 call to Kernel::getContainerBuilder()
1 method overrides Kernel::getContainerBuilder()

File

drupal/core/vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Kernel.php, line 699

Class

Kernel
The Kernel is the heart of the Symfony system.

Namespace

Symfony\Component\HttpKernel

Code

protected function getContainerBuilder() {
  return new ContainerBuilder(new ParameterBag($this
    ->getKernelParameters()));
}