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: }
14: