PDepend\Source\Language\PHP\PHPBuilder::buildAstComment PHP Méthode

buildAstComment() public méthode

Builds a new comment node instance.
Since: 0.9.8
public buildAstComment ( string $cdata ) : PDepend\Source\AST\ASTComment
$cdata string The comment text.
Résultat PDepend\Source\AST\ASTComment
    public function buildAstComment($cdata)
    {
        return $this->buildAstNodeInstance('ASTComment', $cdata);
    }
PHPBuilder