ISpeechToTextProviderWithId.php 196 B

1234567891011121314
  1. <?php
  2. namespace OCP\SpeechToText;
  3. /**
  4. * @since 28.0.0
  5. */
  6. interface ISpeechToTextProviderWithId extends ISpeechToTextProvider {
  7. /**
  8. * @since 28.0.0
  9. */
  10. public function getId(): string;
  11. }