File: /home/accemeff/vendor/craftcms/cms/src/events/RegisterTemplateRootsEvent.php
<?php
/**
* @link https://craftcms.com/
* @copyright Copyright (c) Pixel & Tonic, Inc.
* @license https://craftcms.github.io/license/
*/
namespace craft\events;
use yii\base\Event;
/**
* RegisterTemplateRootsEvent class.
*
* @author Pixel & Tonic, Inc. <support@pixelandtonic.com>
* @since 3.0
*/
class RegisterTemplateRootsEvent extends Event
{
// Properties
// =========================================================================
/**
* @var array The registered template roots. Each key should be a root template path, and values should be the corresponding directory path.
*/
public $roots = [];
}