TranslatorInterface.php 529 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * This file is part of the Carbon package.
  4. *
  5. * (c) Brian Nesbitt <brian@nesbot.com>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. namespace Symfony\Component\Translation;
  11. use Symfony\Contracts\Translation\TranslatorInterface as NewTranslatorInterface;
  12. /**
  13. * @internal Fix the IDE auto-completion.
  14. */
  15. interface TranslatorInterface extends NewTranslatorInterface
  16. {
  17. // This is a polyfill for Symfony < 5 compatibility.
  18. }