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.
 
 
 
 
 

20 lines
352 B

<?php
namespace frontend\widgets\post;
use core\entities\post\PostComment;
class CommentView
{
public PostComment $comment;
/**
* @var self[]
*/
public array $children;
public function __construct(PostComment $comment, array $children)
{
$this->comment = $comment;
$this->children = $children;
}
}