|
<?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; |
|
} |
|
} |