File "Builder.php"
Full Path: /home/clickysoft/public_html/jmapi5.clickysoft.net/vendor/nikic/php-parser/lib/PhpParser/Builder.php
File size: 202 bytes
MIME-type: text/x-php
Charset: utf-8
<?php declare(strict_types=1);
namespace PhpParser;
interface Builder {
/**
* Returns the built node.
*
* @return Node The built node
*/
public function getNode(): Node;
}