mirror of
https://github.com/phabelio/PHP-Parser.git
synced 2024-11-27 12:35:05 +01:00
dce19b074b
Were this library to be fully annotated with scalar types and return types where possible and were strict types to be enabled for all files, the test suite would now pass.
16 lines
268 B
PHP
16 lines
268 B
PHP
<?php
|
|
|
|
namespace PhpParser;
|
|
|
|
interface Unserializer
|
|
{
|
|
/**
|
|
* Unserializes a string in some format into a node tree.
|
|
*
|
|
* @param string $string Serialized string
|
|
*
|
|
* @return mixed Node tree
|
|
*/
|
|
public function unserialize($string);
|
|
}
|