13 lines
170 B
PHP
13 lines
170 B
PHP
<?php
|
|
|
|
namespace PhpParser;
|
|
|
|
interface Builder
|
|
{
|
|
/**
|
|
* Returns the built node.
|
|
*
|
|
* @return Node The built node
|
|
*/
|
|
public function getNode();
|
|
} |