Security update for Core, with self-updated composer
[yaffs-website] / vendor / nikic / php-parser / test / code / parser / stmt / inlineHTML.test
diff --git a/vendor/nikic/php-parser/test/code/parser/stmt/inlineHTML.test b/vendor/nikic/php-parser/test/code/parser/stmt/inlineHTML.test
new file mode 100644 (file)
index 0000000..9b1b71d
--- /dev/null
@@ -0,0 +1,27 @@
+Inline HTML
+-----
+<?php
+$a;
+?>
+B
+<?php
+$c;
+?>
+<?php
+$d;
+-----
+array(
+    0: Expr_Variable(
+        name: a
+    )
+    1: Stmt_InlineHTML(
+        value: B
+
+    )
+    2: Expr_Variable(
+        name: c
+    )
+    3: Expr_Variable(
+        name: d
+    )
+)
\ No newline at end of file