drupal-civicrm/vendor/nikic/php-parser/lib/PhpParser/Unserializer.php

19 lines
291 B
PHP
Raw Normal View History

2018-01-14 15:10:16 +02:00
<?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);
}