You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
<?php |
|
|
|
namespace frontend\widgets\post; |
|
|
|
use core\entities\post\PostComment; |
|
|
|
class CommentView |
|
{ |
|
public $comment; |
|
/** |
|
* @var self[] |
|
*/ |
|
public $children; |
|
|
|
public function __construct(PostComment $comment, array $children) |
|
{ |
|
$this->comment = $comment; |
|
$this->children = $children; |
|
} |
|
} |