Security update for Core, with self-updated composer
[yaffs-website] / vendor / nikic / php-parser / test / code / prettyPrinter / stmt / tryCatch.test
diff --git a/vendor/nikic/php-parser/test/code/prettyPrinter/stmt/tryCatch.test b/vendor/nikic/php-parser/test/code/prettyPrinter/stmt/tryCatch.test
new file mode 100644 (file)
index 0000000..044934d
--- /dev/null
@@ -0,0 +1,24 @@
+tryCatch
+-----
+<?php
+
+try {
+
+} catch (Exception $e) {
+
+}
+
+try {
+} catch (Exception $e) {
+
+} finally {
+
+}
+-----
+try {
+} catch (Exception $e) {
+}
+try {
+} catch (Exception $e) {
+} finally {
+}
\ No newline at end of file