Version 1
[yaffs-website] / vendor / nikic / php-parser / lib / PhpParser / Unserializer.php
diff --git a/vendor/nikic/php-parser/lib/PhpParser/Unserializer.php b/vendor/nikic/php-parser/lib/PhpParser/Unserializer.php
new file mode 100644 (file)
index 0000000..9c221a1
--- /dev/null
@@ -0,0 +1,18 @@
+<?php
+
+namespace PhpParser;
+
+/**
+ * @deprecated
+ */
+interface Unserializer
+{
+    /**
+     * Unserializes a string in some format into a node tree.
+     *
+     * @param string $string Serialized string
+     *
+     * @return mixed Node tree
+     */
+    public function unserialize($string);
+}