123456789101112131415161718192021222324252627282930313233 |
- <?php
- namespace Symfony\Component\Translation;
- use Symfony\Component\Translation\Exception\InvalidArgumentException;
- interface TranslatorBagInterface
- {
-
- public function getCatalogue($locale = null);
- }
|