public function Kernel::__clone

File

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

Class

Kernel
The Kernel is the heart of the Symfony system.

Namespace

Symfony\Component\HttpKernel

Code

public function __clone() {
  if ($this->debug) {
    $this->startTime = microtime(true);
  }
  $this->booted = false;
  $this->container = null;
}