CommentNode::renderHtmlCommentBody PHP Method

renderHtmlCommentBody() private method

private renderHtmlCommentBody ( )
    private function renderHtmlCommentBody()
    {
        if ($this->hasChildren()) {
            return "\n" . $this->renderChildren() . $this->getSpaces();
        } else {
            return substr($this->getHaml(), 1) . " ";
        }
    }