Files
faveo/vendor/nikic/php-parser/lib/PhpParser/Builder.php
2015-05-01 13:13:01 +05:30

13 lines
170 B
PHP

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