TranslatorInterface.php 871 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <?php
  2. declare(strict_types=1);
  3. /**
  4. * This file is part of Hyperf.
  5. *
  6. * @link https://www.hyperf.io
  7. * @document https://hyperf.wiki
  8. * @contact group@hyperf.io
  9. * @license https://github.com/hyperf/hyperf/blob/master/LICENSE
  10. */
  11. namespace Hyperf\Contract;
  12. interface TranslatorInterface
  13. {
  14. /**
  15. * Get the translation for a given key.
  16. */
  17. public function trans(string $key, array $replace = [], ?string $locale = null);
  18. /**
  19. * Get a translation according to an integer value.
  20. *
  21. * @param array|\Countable|int $number
  22. */
  23. public function transChoice(string $key, $number, array $replace = [], ?string $locale = null): string;
  24. /**
  25. * Get the default locale being used.
  26. */
  27. public function getLocale(): string;
  28. /**
  29. * Set the default locale.
  30. */
  31. public function setLocale(string $locale);
  32. }