PhpParser\PrettyPrinter\Standard::pExpr_FuncCall PHP Method

pExpr_FuncCall() protected method

Function calls and similar constructs
protected pExpr_FuncCall ( PhpParser\Node\Expr\FuncCall $node )
$node PhpParser\Node\Expr\FuncCall
    protected function pExpr_FuncCall(Expr\FuncCall $node) {
        return $this->pCallLhs($node->name)
             . '(' . $this->pCommaSeparated($node->args) . ')';
    }
Standard