1
0
mirror of https://github.com/flarum/core.git synced 2025-10-15 08:55:53 +02:00
Files
php-flarum/src/Core/Groups/Commands/CreateGroup.php
2015-08-26 16:56:32 +09:30

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;
}
}