123456789101112131415161718192021222324252627282930313233343536 |
- <?php
- namespace Symfony\Component\Translation;
- use Symfony\Component\Translation\Exception\InvalidArgumentException;
- interface TranslatorBagInterface
- {
-
- public function getCatalogue(?string $locale = null): MessageCatalogueInterface;
-
- public function getCatalogues(): array;
- }
|