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

buildAstCompoundVariable() public method

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