ISpeechToTextProviderWithId.php 346 B

12345678910111213141516171819
  1. <?php
  2. /**
  3. * SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors
  4. * SPDX-License-Identifier: AGPL-3.0-or-later
  5. */
  6. namespace OCP\SpeechToText;
  7. /**
  8. * @since 28.0.0
  9. * @deprecated 30.0.0
  10. */
  11. interface ISpeechToTextProviderWithId extends ISpeechToTextProvider {
  12. /**
  13. * @since 28.0.0
  14. */
  15. public function getId(): string;
  16. }