Unserializer.php 291 B

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