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