Builder.php 202 B

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