TranslatorBagInterface.php 802 B

123456789101112131415161718192021222324252627282930313233
  1. <?php
  2. /*
  3. * This file is part of the Symfony package.
  4. *
  5. * (c) Fabien Potencier <fabien@symfony.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\Component\Translation\Exception\InvalidArgumentException;
  12. /**
  13. * TranslatorBagInterface.
  14. *
  15. * @author Abdellatif Ait boudad <a.aitboudad@gmail.com>
  16. */
  17. interface TranslatorBagInterface
  18. {
  19. /**
  20. * Gets the catalogue by locale.
  21. *
  22. * @param string|null $locale The locale or null to use the default
  23. *
  24. * @return MessageCatalogueInterface
  25. *
  26. * @throws InvalidArgumentException If the locale contains invalid characters
  27. */
  28. public function getCatalogue($locale = null);
  29. }