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