File: /home/accemeff/vendor/craftcms/cms/src/events/RegisterUserActionsEvent.php
<?php
/**
* @link https://craftcms.com/
* @copyright Copyright (c) Pixel & Tonic, Inc.
* @license https://craftcms.github.io/license/
*/
namespace craft\events;
use craft\elements\User;
use yii\base\Event;
/**
* RegisterUserActionsEvent class.
*
* @author Pixel & Tonic, Inc. <support@pixelandtonic.com>
* @since 3.0
*/
class RegisterUserActionsEvent extends Event
{
// Properties
// =========================================================================
/**
* @var User|null The user associated with the event
*/
public $user;
/**
* @var array Actions related to the user’s status
*/
public $statusActions = [];
/**
* @var array Actions related to the user’s authenticated session
*/
public $sessionActions = [];
/**
* @var array Destructive actions
*/
public $destructiveActions = [];
/**
* @var array Miscellaneous actions
*/
public $miscActions = [];
}