PhpParser\PrettyPrinter\Standard::pExpr_StaticCall PHP Method

pExpr_StaticCall() protected method

protected pExpr_StaticCall ( PhpParser\Node\Expr\StaticCall $node )
$node PhpParser\Node\Expr\StaticCall
    protected function pExpr_StaticCall(Expr\StaticCall $node) {
        return $this->pDereferenceLhs($node->class) . '::'
             . ($node->name instanceof Expr
                ? ($node->name instanceof Expr\Variable
                   ? $this->p($node->name)
                   : '{' . $this->p($node->name) . '}')
                : $node->name)
             . '(' . $this->pCommaSeparated($node->args) . ')';
    }
Standard