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\models;
use craft\base\Model;
* @author nystudio107
* @package TwigProfiler
* @since 1.0.0
class Settings extends Model
{
// Public Properties
// =========================================================================
* @var bool Controls whether to append the template name to the profile
* category
public bool $appendTemplateName = true;
// Public Methods
* @inheritdoc
public function rules(): array
return [
['appendTemplateName', 'boolean'],
];
}