mirror of
https://github.com/danog/PHP-Parser.git
synced 2024-11-27 12:24:39 +01:00
b84553e011
The unserializiation implementation currently is very hacky => needs some refactoring.
14 lines
257 B
PHP
14 lines
257 B
PHP
<?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);
|
|
}
|