26d8921efc6ad4294a1a059e2d545498ac7621ad
[yaffs-website] / php-parser / lib / PhpParser / Builder.php
1 <?php declare(strict_types=1);
2
3 namespace PhpParser;
4
5 interface Builder
6 {
7     /**
8      * Returns the built node.
9      *
10      * @return Node The built node
11      */
12     public function getNode() : Node;
13 }