1
0
mirror of https://github.com/flarum/core.git synced 2025-07-15 22:06:24 +02:00
Files
php-flarum/src/Core/Command/EditUser.php
2017-10-03 18:47:23 +02:00

51 lines
960 B
PHP

<?php
/*
* This file is part of Flarum.
*
* (c) Toby Zerner <toby.zerner@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Flarum\Core\Command;
use Flarum\User\User;
class EditUser
{
/**
* The ID of the user to edit.
*
* @var int
*/
public $userId;
/**
* The user performing the action.
*
* @var User
*/
public $actor;
/**
* The attributes to update on the user.
*
* @var array
*/
public $data;
/**
* @param int $userId The ID of the user to edit.
* @param User $actor The user performing the action.
* @param array $data The attributes to update on the user.
*/
public function __construct($userId, User $actor, array $data)
{
$this->userId = $userId;
$this->actor = $actor;
$this->data = $data;
}
}