PhpParser\PrettyPrinter\Standard::pStmt_Catch PHP Method

pStmt_Catch() protected method

protected pStmt_Catch ( Catch_ $node )
$node PhpParser\Node\Stmt\Catch_
    protected function pStmt_Catch(Stmt\Catch_ $node) {
        return ' catch (' . $this->pImplode($node->types, '|') . ' $' . $node->var . ') {'
             . $this->pStmts($node->stmts) . "\n" . '}';
    }
Standard