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

buildAstStaticReference() public method

Builds a new static reference instance.
Since: 0.9.6
public buildAstStaticReference ( PDepend\Source\AST\AbstractASTClassOrInterface $owner ) : PDepend\Source\AST\ASTStaticReference
$owner PDepend\Source\AST\AbstractASTClassOrInterface
return PDepend\Source\AST\ASTStaticReference
    public function buildAstStaticReference(AbstractASTClassOrInterface $owner)
    {
        Log::debug('Creating: \\PDepend\\Source\\AST\\ASTStaticReference()');
        return new \PDepend\Source\AST\ASTStaticReference($this->context, $owner);
    }
PHPBuilder