Version 1
[yaffs-website] / vendor / nikic / php-parser / lib / PhpParser / Serializer.php
diff --git a/vendor/nikic/php-parser/lib/PhpParser/Serializer.php b/vendor/nikic/php-parser/lib/PhpParser/Serializer.php
new file mode 100644 (file)
index 0000000..1dd7906
--- /dev/null
@@ -0,0 +1,18 @@
+<?php
+
+namespace PhpParser;
+
+/**
+ * @deprecated
+ */
+interface Serializer
+{
+    /**
+     * Serializes statements into some string format.
+     *
+     * @param array $nodes Statements
+     *
+     * @return string Serialized string
+     */
+    public function serialize(array $nodes);
+}
\ No newline at end of file