phpdocs.test-in.php 444 B

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. class Foo {
  3. /**
  4. * @access public
  5. */
  6. public $bar;
  7. /**
  8. * @type array $baz
  9. */
  10. public $baz;
  11. /**
  12. *
  13. * FooBar
  14. *
  15. * @throws Exception
  16. * @param inTeGer $fo This is int.
  17. *
  18. * @param float $bar This is float.
  19. * @param int $b Test phpdoc_param_order
  20. * @param bool $a Test phpdoc_param_order
  21. * @return void
  22. *
  23. *
  24. * @custom
  25. */
  26. public function fooBar ($a, $fo, $b, $bar, array $baz, $c, $qux) {}
  27. }