gnu-social/vendor/nikic/php-parser/lib/PhpParser/Unserializer.php

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