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

16 lines
268 B
PHP
Raw Normal View History

2020-08-07 23:42:38 +01:00
<?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);
}