radarrplexorganizrnginxsonarrdashboardserverhomepagesabnzbdheimdallembycouchpotatonzbgetbookmarkapplication-dashboardmuximuxlandingpagestartpagelandinghtpc
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
291 B
18 lines
291 B
<?php
|
|
|
|
namespace PhpParser;
|
|
|
|
/**
|
|
* @deprecated
|
|
*/
|
|
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);
|
|
}
|
|
|