public function LoggingTranslator::getCatalogue in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/translation/LoggingTranslator.php \Symfony\Component\Translation\LoggingTranslator::getCatalogue()
Gets the catalogue by locale.
Parameters
string|null $locale The locale or null to use the default:
Return value
Throws
\InvalidArgumentException If the locale contains invalid characters
Overrides TranslatorBagInterface::getCatalogue
File
- vendor/
symfony/ translation/ LoggingTranslator.php, line 86
Class
- LoggingTranslator
- @author Abdellatif Ait boudad <a.aitboudad@gmail.com>
Namespace
Symfony\Component\TranslationCode
public function getCatalogue($locale = null) {
return $this->translator
->getCatalogue($locale);
}