PDepend\Source\Language\PHP\PHPBuilder::buildAstPropertyPostfix PHP 메소드

buildAstPropertyPostfix() 공개 메소드

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