interface.test 653 B

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