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.

21 lines
352 B

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