1
0
mirror of https://github.com/danog/PHP-Parser.git synced 2024-12-02 17:28:27 +01:00
PHP-Parser/test/code/prettyPrinter/stmt/tryCatch.test

24 lines
188 B
Plaintext
Raw Normal View History

2015-10-01 17:32:24 +02:00
tryCatch
-----
<?php
try {
} catch (Exception $e) {
}
try {
} catch (Exception $e) {
} finally {
}
-----
try {
} catch (Exception $e) {
}
try {
} catch (Exception $e) {
} finally {
}