mirror of
https://github.com/danog/PHP-Parser.git
synced 2024-12-12 17:37:21 +01:00
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);
|
||
|
}
|