1234567891011121314151617181920212223242526272829303132333435 |
- <?php
- declare(strict_types=1);
- namespace OCP\Translation;
- use RuntimeException;
- interface ITranslationProvider {
-
- public function getName(): string;
-
- public function getAvailableLanguages(): array;
-
- public function translate(?string $fromLanguage, string $toLanguage, string $text): string;
- }
|