commentAfterNamespace.test 304 B

1234567891011121314151617181920
  1. Trailing comment after braced namespace declaration
  2. -----
  3. <?php
  4. namespace Foo {}
  5. // Comment
  6. -----
  7. array(
  8. 0: Stmt_Namespace(
  9. name: Name(
  10. name: Foo
  11. )
  12. stmts: array(
  13. )
  14. )
  15. 1: Stmt_Nop(
  16. comments: array(
  17. 0: // Comment
  18. )
  19. )
  20. )