drupal-civicrm/vendor/nikic/php-parser/lib/PhpParser/Builder.php
2018-01-14 13:10:16 +00:00

13 lines
170 B
PHP

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