Unserializer.php 268 B

12345678910111213141516
  1. <?php
  2. namespace PhpParser;
  3. interface Unserializer
  4. {
  5. /**
  6. * Unserializes a string in some format into a node tree.
  7. *
  8. * @param string $string Serialized string
  9. *
  10. * @return mixed Node tree
  11. */
  12. public function unserialize($string);
  13. }