Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. HtmlDumper.php

function HtmlDumper::formatTime

Overrides BaseDumper::formatTime

File

vendor/twig/twig/src/Profiler/Dumper/HtmlDumper.php, line 43

Class

HtmlDumper
@author Fabien Potencier <fabien@symfony.com>

Namespace

Twig\Profiler\Dumper

Code

protected function formatTime(Profile $profile, $percent) : string {
    return \sprintf('<span style="color: %s">%.2fms/%.0f%%</span>', $percent > 20 ? self::$colors['big'] : 'auto', $profile->getDuration() * 1000, $percent);
}
RSS feed
Powered by Drupal