CommentNode::renderHtmlComment PHP 메소드

renderHtmlComment() 개인적인 메소드

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