mirror of
https://github.com/phabelio/PHP-Parser.git
synced 2024-11-27 12:35:05 +01:00
b84553e011
The unserializiation implementation currently is very hacky => needs some refactoring.
13 lines
248 B
PHP
13 lines
248 B
PHP
<?php
|
|
|
|
interface PHPParser_Serializer
|
|
{
|
|
/**
|
|
* Serializes statements into some string format.
|
|
*
|
|
* @param array $nodes Statements
|
|
*
|
|
* @return string Serialized string
|
|
*/
|
|
public function serialize(array $nodes);
|
|
} |