PhpParser\PrettyPrinter\Standard::pStmt_Global PHP Method

pStmt_Global() protected method

protected pStmt_Global ( PhpParser\Node\Stmt\Global_ $node )
$node PhpParser\Node\Stmt\Global_
    protected function pStmt_Global(Stmt\Global_ $node) {
        return 'global ' . $this->pCommaSeparated($node->vars) . ';';
    }
Standard