W3cubDocs

/Drupal 8

public function DrupalKernel::rebuildContainer

public DrupalKernel::rebuildContainer()

Force a container rebuild.

Return value

\Symfony\Component\DependencyInjection\ContainerInterface

Overrides DrupalKernelInterface::rebuildContainer

File

core/lib/Drupal/Core/DrupalKernel.php, line 1058

Class

DrupalKernel
The DrupalKernel class is the core of Drupal itself.

Namespace

Drupal\Core

Code

public function rebuildContainer() {
  // Empty module properties and for them to be reloaded from scratch.
  $this->moduleList = NULL;
  $this->moduleData = array();
  $this->containerNeedsRebuild = TRUE;
  return $this->initializeContainer();
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Core!DrupalKernel.php/function/DrupalKernel::rebuildContainer/8.1.x