mirror of
https://github.com/danog/PHP-Parser.git
synced 2024-12-02 09:17:58 +01:00
11 lines
168 B
PHP
11 lines
168 B
PHP
|
<?php
|
||
|
|
||
|
interface PHPParser_Builder
|
||
|
{
|
||
|
/**
|
||
|
* Returns the built node.
|
||
|
*
|
||
|
* @return PHPParser_Node The built node
|
||
|
*/
|
||
|
public function getNode();
|
||
|
}
|