php-parser/lib/PHPParser/Builder.php

11 lines
168 B
PHP
Raw Normal View History

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