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

buildAstVariableDeclarator() public method

Builds a new variable declarator node.
Since: 0.9.6
public buildAstVariableDeclarator ( string $image ) : PDepend\Source\AST\ASTVariableDeclarator
$image string The source image for the variable declarator.
return PDepend\Source\AST\ASTVariableDeclarator
    public function buildAstVariableDeclarator($image)
    {
        return $this->buildAstNodeInstance('ASTVariableDeclarator', $image);
    }
PHPBuilder