public function render(Value
$o): ?string
{ $r =
$o->
getRepresentation('microtime'
);
if (!
$r instanceof MicrotimeRepresentation || !
($dt =
$r->
getDateTime())) { return null;
} $out = '';
if (0 ==
$o->depth
) { $out .=
$this->renderer->
colorTitle($this->renderer->
renderTitle($o)).PHP_EOL;
} $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.'">';
}