1
0
mirror of https://github.com/danog/PHP-Parser.git synced 2024-11-27 04:14:44 +01:00
PHP-Parser/lib/PhpParser/Serializer.php

15 lines
260 B
PHP
Raw Normal View History

<?php
namespace PhpParser;
interface Serializer
{
/**
* Serializes statements into some string format.
*
* @param array $nodes Statements
*
* @return string Serialized string
*/
public function serialize(array $nodes);
}