ClassWithAnnotatedParameters.php 579 B

12345678910111213141516171819202122232425262728293031323334
  1. <?php
  2. namespace Symfony\Component\Debug\Tests\Fixtures;
  3. class ClassWithAnnotatedParameters
  4. {
  5. /**
  6. * @param string $foo this is a foo parameter
  7. */
  8. public function fooMethod(string $foo)
  9. {
  10. }
  11. /**
  12. * @param string $bar parameter not implemented yet
  13. */
  14. public function barMethod(/* string $bar = null */)
  15. {
  16. }
  17. /**
  18. * @param Quz $quz parameter not implemented yet
  19. */
  20. public function quzMethod(/* Quz $quz = null */)
  21. {
  22. }
  23. /**
  24. * @param true $yes
  25. */
  26. public function isSymfony()
  27. {
  28. }
  29. }