[Stopwatch] minor fix

This commit is contained in:
Nicolas Grekas 2017-11-07 15:25:27 +01:00
parent 1e0f2267bb
commit 5420cfca36
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ class Stopwatch
public function __construct()
{
$this->sections = $this->activeSections = array('__root__' => new Section('__root__'));
$this->sections = $this->activeSections = array('__root__' => new Section(null));
}
/**