1
0
mirror of https://github.com/danog/PHP-Parser.git synced 2024-11-27 04:14:44 +01:00
PHP-Parser/lib/PhpParser/Unserializer.php

16 lines
269 B
PHP
Raw Normal View History

<?php
namespace PhpParser;
interface Unserializer
{
/**
* Unserializes a string in some format into a node tree.
*
* @param string $string Serialized string
*
* @return array Statements
*/
public function unserialize($string);
}