astrXbian/www/multitube/vendor/nikic/php-parser/test/code/prettyPrinter/stmt/tryCatch.test

24 lines
188 B
Plaintext
Raw Normal View History

2021-03-20 01:33:02 +01:00
tryCatch
-----
<?php
try {
} catch (Exception $e) {
}
try {
} catch (Exception $e) {
} finally {
}
-----
try {
} catch (Exception $e) {
}
try {
} catch (Exception $e) {
} finally {
}