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

buildAstMemberPrimaryPrefix() public method

-------- Foo::bar(); -------- --------- Foo::$bar(); --------- --------- $obj->bar(); --------- ---------- $obj->$bar(); ----------
Since: 0.9.6
public buildAstMemberPrimaryPrefix ( string $image ) : PDepend\Source\AST\ASTMemberPrimaryPrefix
$image string The source image of this expression.
return PDepend\Source\AST\ASTMemberPrimaryPrefix
    public function buildAstMemberPrimaryPrefix($image)
    {
        return $this->buildAstNodeInstance('ASTMemberPrimaryPrefix', $image);
    }
PHPBuilder