VirtualInterface.php 956 B

1234567891011121314151617181920212223242526272829303132333435
  1. <?php
  2. namespace Symfony\Component\ErrorHandler\Tests\Fixtures;
  3. /**
  4. * @method string interfaceMethod()
  5. * @method static staticReturningMethod()
  6. * @method sameLineInterfaceMethod($arg)
  7. * @method sameLineInterfaceMethodNoBraces
  8. *
  9. * Ignored
  10. * @method
  11. * @method
  12. *
  13. * Not ignored
  14. * @method newLineInterfaceMethod() Some description!
  15. * @method \stdClass newLineInterfaceMethodNoBraces Description
  16. *
  17. * Invalid
  18. * @method unknownType invalidInterfaceMethod()
  19. * @method unknownType|string invalidInterfaceMethodNoBraces
  20. *
  21. * Complex
  22. * @method complexInterfaceMethod($arg, ...$args)
  23. * @method string[]|int complexInterfaceMethodTyped($arg, int ...$args) Description ...
  24. *
  25. * Static
  26. * @method static Foo&Bar staticMethod()
  27. * @method static mixed staticMethodNoBraces
  28. * @method static \stdClass staticMethodTyped(int $arg) Description
  29. * @method static \stdClass[] staticMethodTypedNoBraces
  30. */
  31. interface VirtualInterface
  32. {
  33. }