菜谱项目

commentAfterNamespace.test 344B

12345678910111213141516171819202122
  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. parts: array(
  11. 0: Foo
  12. )
  13. )
  14. stmts: array(
  15. )
  16. )
  17. 1: Stmt_Nop(
  18. comments: array(
  19. 0: // Comment
  20. )
  21. )
  22. )