SubClassWithAnnotatedParameters.php 582 B

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. namespace Symfony\Component\ErrorHandler\Tests\Fixtures;
  3. class SubClassWithAnnotatedParameters extends ClassWithAnnotatedParameters implements InterfaceWithAnnotatedParameters
  4. {
  5. use TraitWithAnnotatedParameters;
  6. public function fooMethod(string $foo)
  7. {
  8. }
  9. public function barMethod($bar = null)
  10. {
  11. }
  12. public function quzMethod()
  13. {
  14. }
  15. public function whereAmI()
  16. {
  17. }
  18. /**
  19. * @param $defined
  20. * @param Type\Does\Not\Matter $definedCallable
  21. */
  22. public function iAmHere()
  23. {
  24. }
  25. }