Version 1
[yaffs-website] / vendor / nikic / php-parser / lib / PhpParser / Unserializer.php
1 <?php
2
3 namespace PhpParser;
4
5 /**
6  * @deprecated
7  */
8 interface Unserializer
9 {
10     /**
11      * Unserializes a string in some format into a node tree.
12      *
13      * @param string $string Serialized string
14      *
15      * @return mixed Node tree
16      */
17     public function unserialize($string);
18 }