Heimdall/vendor/nikic/php-parser/lib/PhpParser/Builder.php
2018-02-01 20:01:12 +00:00

13 lines
170 B
PHP

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