Flarum\Core\Command\CreateGroup::__construct PHP Method

__construct() public method

public __construct ( User $actor, array $data )
$actor Flarum\Core\User The user performing the action.
$data array The attributes of the new group.
    public function __construct(User $actor, array $data)
    {
        $this->actor = $actor;
        $this->data = $data;
    }
CreateGroup