phpdocs.test-out.php 477 B

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