PhpParser\PrettyPrinter\Standard::pStmt_TryCatch PHP Method

pStmt_TryCatch() protected method

protected pStmt_TryCatch ( TryCatch $node )
$node PhpParser\Node\Stmt\TryCatch
    protected function pStmt_TryCatch(Stmt\TryCatch $node) {
        return 'try {' . $this->pStmts($node->stmts) . "\n" . '}'
             . $this->pImplode($node->catches)
             . ($node->finally !== null ? $this->p($node->finally) : '');
    }
Standard