drupal-civicrm/vendor/nikic/php-parser/lib/PhpParser/Unserializer.php
2018-01-14 13:10:16 +00: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);
}