PDepend\Source\Language\PHP\PHPBuilder::buildAstComment PHP Метод

buildAstComment() публичный Метод

Builds a new comment node instance.
С версии: 0.9.8
public buildAstComment ( string $cdata ) : PDepend\Source\AST\ASTComment
$cdata string The comment text.
Результат PDepend\Source\AST\ASTComment
    public function buildAstComment($cdata)
    {
        return $this->buildAstNodeInstance('ASTComment', $cdata);
    }
PHPBuilder