1
0
mirror of https://github.com/danog/PHP-Parser.git synced 2024-12-12 17:37:21 +01:00
PHP-Parser/lib/PHPParser/Unserializer.php

14 lines
257 B
PHP
Raw Normal View History

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