bug64239_1.phpt 364 B

12345678910111213141516171819202122232425262728
  1. --TEST--
  2. Bug #64239 (get_class_methods() changed behavior)
  3. --FILE--
  4. <?php
  5. class A {
  6. use T2 { t2method as Bmethod; }
  7. }
  8. class B extends A {
  9. }
  10. trait T2 {
  11. public function t2method() {
  12. }
  13. }
  14. print_r(get_class_methods("A"));
  15. print_r(get_class_methods("B"));
  16. --EXPECT--
  17. Array
  18. (
  19. [0] => Bmethod
  20. [1] => t2method
  21. )
  22. Array
  23. (
  24. [0] => Bmethod
  25. [1] => t2method
  26. )