2012-03-10 17:56:56 +01:00
|
|
|
<?php
|
|
|
|
|
2014-02-06 14:44:16 +01:00
|
|
|
namespace PhpParser;
|
|
|
|
|
|
|
|
interface Builder
|
2012-03-10 17:56:56 +01:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Returns the built node.
|
|
|
|
*
|
2014-02-06 14:44:16 +01:00
|
|
|
* @return Node The built node
|
2012-03-10 17:56:56 +01:00
|
|
|
*/
|
|
|
|
public function getNode();
|
|
|
|
}
|