Builder.php 168 B

1234567891011
  1. <?php
  2. interface PHPParser_Builder
  3. {
  4. /**
  5. * Returns the built node.
  6. *
  7. * @return PHPParser_Node The built node
  8. */
  9. public function getNode();
  10. }