$out .=
$this->renderer->
renderHeader($o);
$out .=
$this->renderer->
renderChildren($o).PHP_EOL;
$indent = \
str_repeat(' ',
($o->depth + 1
) *
$this->renderer->indent_width
);
if ($this->useJs
) { $out .= '<span data-kint-microtime-group="'.
$r->group.'">';
} $out .=
$indent.
$this->renderer->
colorType('TIME:'
).' ';
$out .=
$this->renderer->
colorValue($dt->
format('Y-m-d H:i:s.u'
)).PHP_EOL;
if (null !==
$r->lap
) { $out .=
$indent.
$this->renderer->
colorType('SINCE LAST CALL:'
).' ';
$lap = \
round($r->lap, 4
);
if ($this->useJs
) { $lap = '<span class="kint-microtime-lap">'.
$lap.'</span>';
}