Mercurial > hg > isophonics-drupal-site
comparison vendor/nikic/php-parser/lib/PhpParser/Unserializer.php @ 0:4c8ae668cc8c
Initial import (non-working)
author | Chris Cannam |
---|---|
date | Wed, 29 Nov 2017 16:09:58 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:4c8ae668cc8c |
---|---|
1 <?php | |
2 | |
3 namespace PhpParser; | |
4 | |
5 /** | |
6 * @deprecated | |
7 */ | |
8 interface Unserializer | |
9 { | |
10 /** | |
11 * Unserializes a string in some format into a node tree. | |
12 * | |
13 * @param string $string Serialized string | |
14 * | |
15 * @return mixed Node tree | |
16 */ | |
17 public function unserialize($string); | |
18 } |