InstallerKernel.php in Zircon Profile 8
Same filename and directory in other branches
Contains \Drupal\Core\Installer\InstallerKernel.
Namespace
Drupal\Core\InstallerFile
core/lib/Drupal/Core/Installer/InstallerKernel.phpView source
<?php
/**
* @file
* Contains \Drupal\Core\Installer\InstallerKernel.
*/
namespace Drupal\Core\Installer;
use Drupal\Core\DrupalKernel;
/**
* Extend DrupalKernel to handle force some kernel behaviors.
*/
class InstallerKernel extends DrupalKernel {
/**
* {@inheritdoc}
*/
protected function initializeContainer() {
// Always force a container rebuild.
$this->containerNeedsRebuild = TRUE;
$container = parent::initializeContainer();
return $container;
}
/**
* Reset the bootstrap config storage.
*
* Use this from a database driver runTasks() if the method overrides the
* bootstrap config storage. Normally the bootstrap config storage is not
* re-instantiated during a single install request. Most drivers will not
* need this method.
*
* @see \Drupal\Core\Database\Install\Tasks::runTasks().
*/
public function resetConfigStorage() {
$this->configStorage = NULL;
}
}
Classes
Name | Description |
---|---|
InstallerKernel | Extend DrupalKernel to handle force some kernel behaviors. |