Files
iTop/lib/nikic/php-parser/lib/PhpParser/Builder.php
2020-01-06 15:31:31 +01:00

13 lines
170 B
PHP

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