drupal-civicrm/vendor/nikic/php-parser/lib/PhpParser/Builder.php

13 lines
170 B
PHP
Raw Permalink Normal View History

2018-01-14 15:10:16 +02:00
<?php
namespace PhpParser;
interface Builder
{
/**
* Returns the built node.
*
* @return Node The built node
*/
public function getNode();
}