for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Twig Profiler plugin for Craft CMS
*
* Twig Profiler allows you to profile sections of your Twig templates, and see
* the resulting timings in the Yii2 Debug Toolbar
* @link https://nystudio107.com/
* @copyright Copyright (c) nystudio107
*/
namespace nystudio107\twigprofiler\twigextensions;
use Twig\Extension\AbstractExtension;
* Class ProfilerTwigExtension
* @author nystudio107
* @package TwigProfiler
* @since 1.0.1
class ProfilerTwigExtension extends AbstractExtension
{
// Public Methods
// =========================================================================
* @inheritdoc
public function getName(): string
return 'twig-profiler';
}
public function getTokenParsers(): array
return [
new ProfilerTokenParser(),
];