CommentNode::renderHtmlComment PHP Method

renderHtmlComment() private method

private renderHtmlComment ( )
    private function renderHtmlComment()
    {
        $output = $this->getSpaces() . "<!--";
        $output .= $this->renderHtmlCommentBody();
        $output .= "-->";
        return $output;
    }