mirror of
https://github.com/danog/PHP-Parser.git
synced 2025-01-19 03:52:33 +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();
|
||
|
}
|