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
333 B
20 lines
333 B
7 years ago
|
<?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;
|
||
|
}
|
||
|
}
|