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

buildAstPropertyPostfix() public method

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