File "Builder.php"

Full Path: /home/fundopuh/trader.fxex.org/vendor/nikic/php-parser/lib/PhpParser/Builder.php
File size: 203 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;
}