PDepend\Source\Language\PHP\PHPBuilder::buildAstIdentifier PHP Method

buildAstIdentifier() public method

Builds a new identifier node.
Since: 0.9.6
public buildAstIdentifier ( string $image ) : PDepend\Source\AST\ASTIdentifier
$image string The image of this identifier.
return PDepend\Source\AST\ASTIdentifier
    public function buildAstIdentifier($image)
    {
        return $this->buildAstNodeInstance('ASTIdentifier', $image);
    }
PHPBuilder