mirror of
https://github.com/flarum/core.git
synced 2025-10-10 06:24:26 +02:00
41 lines
778 B
PHP
41 lines
778 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\Discussions\Commands;
|
|
|
|
use Flarum\Core\Users\User;
|
|
|
|
class StartDiscussion
|
|
{
|
|
/**
|
|
* The user authoring the discussion.
|
|
*
|
|
* @var User
|
|
*/
|
|
public $actor;
|
|
|
|
/**
|
|
* The discussion attributes.
|
|
*
|
|
* @var array
|
|
*/
|
|
public $data;
|
|
|
|
/**
|
|
* @param User $actor The user authoring the discussion.
|
|
* @param array $data The discussion attributes.
|
|
*/
|
|
public function __construct(User $actor, array $data)
|
|
{
|
|
$this->actor = $actor;
|
|
$this->data = $data;
|
|
}
|
|
}
|