3 namespace BookStack\Activity\Tools;
5 use BookStack\Activity\Models\Comment;
9 public Comment $comment;
13 * @var CommentTreeNode[]
15 public array $children;
17 public function __construct(Comment $comment, int $depth, array $children)
19 $this->comment = $comment;
20 $this->depth = $depth;
21 $this->children = $children;