File: /home/accemeff/vendor/craftcms/cms/src/events/RestoreEvent.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;
/**
* Restore event class.
*
* @author Pixel & Tonic, Inc. <support@pixelandtonic.com>
* @since 3.0
*/
class RestoreEvent extends Event
{
// Properties
// =========================================================================
/**
* @var string|null The file path to the backup to restore.
*/
public $file;
}