SubClassWithAnnotatedParameters.php 420 B

123456789101112131415161718192021222324
  1. <?php
  2. namespace Symfony\Component\Debug\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. }