Files
iTop/lib/nikic/php-parser/lib/PhpParser/Unserializer.php
2020-01-06 15:31:31 +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);
}