暂无描述

source.php 556B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <?php
  2. /**
  3. * Some comment
  4. */
  5. class Foo{function foo(){}
  6. /**
  7. * @param Baz $baz
  8. */
  9. public function bar(Baz $baz)
  10. {
  11. }
  12. /**
  13. * @param Foobar $foobar
  14. */
  15. static public function foobar(Foobar $foobar)
  16. {
  17. }
  18. public function barfoo(Barfoo $barfoo)
  19. {
  20. }
  21. /**
  22. * This docblock does not belong to the baz function
  23. */
  24. public function baz()
  25. {
  26. }
  27. public function blaz($x, $y)
  28. {
  29. }
  30. public function buzz($foo)
  31. {
  32. echo "${foo}";
  33. return true;
  34. }
  35. }