1
0
mirror of https://github.com/danog/PHP-Parser.git synced 2024-12-04 18:28:25 +01:00
PHP-Parser/lib/PhpParser/Unserializer.php
2017-02-03 22:52:16 +01:00

19 lines
291 B
PHP

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