1 code examples of PHP DebugKit\DebugTimer::start extracted from open source projects
/**
* Enter $profile.
*
* @param \Twig\Profiler\Profile $profile profile
*/
public function enter(Profile $profile): void
{
$name = 'Twig Template: ' . substr($profile->getName(), strlen(ROOT) + 1);
DebugTimer::start($name, __d('twig_view', $name));
parent::enter($profile);
}