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

buildAstMethodPostfix() public method

--------- Foo::bar($baz); --------- ---------- Foo::$bar($baz); ----------
Since: 0.9.6
public buildAstMethodPostfix ( string $image ) : PDepend\Source\AST\ASTMethodPostfix
$image string The image of this node.
return PDepend\Source\AST\ASTMethodPostfix
    public function buildAstMethodPostfix($image)
    {
        return $this->buildAstNodeInstance('ASTMethodPostfix', $image);
    }
PHPBuilder