Files
faveo/vendor/nikic/php-parser/lib/PhpParser/Unserializer.php
Bhanu Slathia b1f62846ab Update v1.0.6
2016-02-16 23:24:52 +05:30

16 lines
268 B
PHP

<?php
namespace PhpParser;
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);
}