php-parser/lib/PhpParser/Builder.php

13 lines
170 B
PHP
Raw Normal View History

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