Patched to Drupal 8.4.8 level. See https://www.drupal.org/sa-core-2018-004 and patch...
[yaffs-website] / vendor / nikic / php-parser / lib / PhpParser / Builder.php
1 <?php
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();
13 }