interface.test 751 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. Interface
  2. -----
  3. <?php
  4. interface A extends C, D {
  5. public function a();
  6. }
  7. -----
  8. array(
  9. 0: Stmt_Interface(
  10. attrGroups: array(
  11. )
  12. name: Identifier(
  13. name: A
  14. )
  15. extends: array(
  16. 0: Name(
  17. name: C
  18. )
  19. 1: Name(
  20. name: D
  21. )
  22. )
  23. stmts: array(
  24. 0: Stmt_ClassMethod(
  25. attrGroups: array(
  26. )
  27. flags: PUBLIC (1)
  28. byRef: false
  29. name: Identifier(
  30. name: a
  31. )
  32. params: array(
  33. )
  34. returnType: null
  35. stmts: null
  36. )
  37. )
  38. )
  39. )