protected DrupalKernel::getContainerBuilder()
Gets a new ContainerBuilder instance used to build the service container.
Return value
File
- core/lib/Drupal/Core/DrupalKernel.php, line 1286
Class
- DrupalKernel
- The DrupalKernel class is the core of Drupal itself.
Namespace
Drupal\Core
Code
1 2 3 | protected function getContainerBuilder() { return new ContainerBuilder( new ParameterBag( $this ->getKernelParameters())); } |
Please login to continue.