mirror of
https://github.com/phabelio/PHP-Parser.git
synced 2024-11-27 04:24:43 +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();
|
|
} |