mirror of
https://github.com/flarum/core.git
synced 2025-10-15 08:55:53 +02:00
41 lines
776 B
PHP
41 lines
776 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\Groups\Commands;
|
|
|
|
use Flarum\Core\Users\User;
|
|
|
|
class CreateGroup
|
|
{
|
|
/**
|
|
* The user performing the action.
|
|
*
|
|
* @var User
|
|
*/
|
|
public $actor;
|
|
|
|
/**
|
|
* The attributes of the new group.
|
|
*
|
|
* @var array
|
|
*/
|
|
public $data;
|
|
|
|
/**
|
|
* @param User $actor The user performing the action.
|
|
* @param array $data The attributes of the new group.
|
|
*/
|
|
public function __construct(User $actor, array $data)
|
|
{
|
|
$this->actor = $actor;
|
|
$this->data = $data;
|
|
}
|
|
}
|