php-parser/lib/PhpParser/Serializer.php

18 lines
283 B
PHP
Raw Normal View History

<?php
namespace PhpParser;
2017-02-03 22:52:16 +01:00
/**
* @deprecated
*/
interface Serializer
{
/**
* Serializes statements into some string format.
*
* @param array $nodes Statements
*
* @return string Serialized string
*/
public function serialize(array $nodes);
}