File: /home/accemeff/vendor/craftcms/cms/src/events/ConfigEvent.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;
/**
* Config event class.
*
* @author Pixel & Tonic, Inc. <support@pixelandtonic.com>
* @since 3.1
*/
class ConfigEvent extends Event
{
// Properties
// =========================================================================
/**
* @var string|null The config path being processed
*/
public $path;
/**
* @var array The old config item value
*/
public $oldValue = [];
/**
* @var array The new config item value
*/
public $newValue = [];
/**
* @var string[]|null Any parts of the path that were matched by `{uid}` tokens.
* This wil be populated if the handler was registered using [[\craft\services\ProjectConfig::registerChangeEventHandler()]],
* or one of its shortcut methods.
*/
public $tokenMatches;
}