mirror of
https://github.com/phabelio/PHP-Parser.git
synced 2024-12-04 18:38:05 +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);
|
||
|
}
|