You are here

interface TranslatorBagInterface in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/translation/TranslatorBagInterface.php \Symfony\Component\Translation\TranslatorBagInterface

TranslatorBagInterface.

@author Abdellatif Ait boudad <a.aitboudad@gmail.com>

Hierarchy

Expanded class hierarchy of TranslatorBagInterface

All classes that implement TranslatorBagInterface

File

vendor/symfony/translation/TranslatorBagInterface.php, line 19

Namespace

Symfony\Component\Translation
View source
interface TranslatorBagInterface {

  /**
   * Gets the catalogue by locale.
   *
   * @param string|null $locale The locale or null to use the default
   *
   * @throws \InvalidArgumentException If the locale contains invalid characters
   *
   * @return MessageCatalogueInterface
   */
  public function getCatalogue($locale = null);

}

Members

Namesort descending Modifiers Type Description Overrides
TranslatorBagInterface::getCatalogue public function Gets the catalogue by locale. 3