public function Stopwatch::__construct

File

drupal/core/vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Debug/Stopwatch.php, line 24

Class

Stopwatch
Stopwatch provides a way to profile code.

Namespace

Symfony\Component\HttpKernel\Debug

Code

public function __construct() {
  $this->sections = $this->activeSections = array(
    '__root__' => new Section('__root__'),
  );
}