blob: 4228977352f29717a86626c0921a0e04a760e8a5 [file] [log] [blame]
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +02001<?php
2
3/*
4 * This file is part of the Symfony package.
5 *
6 * (c) Fabien Potencier <fabien@symfony.com>
7 *
8 * For the full copyright and license information, please view the LICENSE
9 * file that was distributed with this source code.
10 */
11
12namespace Symfony\Component\Translation;
13
14use Symfony\Component\Translation\Exception\InvalidArgumentException;
15
16/**
17 * TranslatorBagInterface.
18 *
19 * @method MessageCatalogueInterface[] getCatalogues() Returns all catalogues of the instance
20 *
21 * @author Abdellatif Ait boudad <a.aitboudad@gmail.com>
22 */
23interface TranslatorBagInterface
24{
25 /**
26 * Gets the catalogue by locale.
27 *
28 * @param string|null $locale The locale or null to use the default
29 *
30 * @return MessageCatalogueInterface
31 *
32 * @throws InvalidArgumentException If the locale contains invalid characters
33 */
34 public function getCatalogue(string $locale = null);
35}