public function DrupalKernel::boot

Overrides Kernel::boot().

Overrides Kernel::boot

1 call to DrupalKernel::boot()

File

drupal/core/lib/Drupal/Core/DrupalKernel.php, line 164
Definition of Drupal\Core\DrupalKernel.

Class

DrupalKernel
The DrupalKernel class is the core of Drupal itself.

Namespace

Drupal\Core

Code

public function boot() {
  if ($this->booted) {
    return;
  }
  $this
    ->initializeContainer();
  $this->booted = TRUE;
  if ($this->containerNeedsDumping && !$this
    ->dumpDrupalContainer($this->container, $this
    ->getContainerBaseClass())) {
    watchdog('DrupalKernel', 'Container cannot be written to disk');
  }
}