1
0
mirror of https://github.com/danog/PHP-Parser.git synced 2024-11-30 04:19:30 +01:00
PHP-Parser/lib/PhpParser/Builder.php

13 lines
170 B
PHP
Raw Normal View History

2012-03-10 17:56:56 +01:00
<?php
namespace PhpParser;
interface Builder
2012-03-10 17:56:56 +01:00
{
/**
* Returns the built node.
*
* @return Node The built node
2012-03-10 17:56:56 +01:00
*/
public function getNode();
}