blob: a787acf12fccc7fa21d33c2e23f6d736dc0b5166 [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/**
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +020017 * @author Abdellatif Ait boudad <a.aitboudad@gmail.com>
18 */
19interface TranslatorBagInterface
20{
21 /**
22 * Gets the catalogue by locale.
23 *
24 * @param string|null $locale The locale or null to use the default
25 *
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +020026 * @throws InvalidArgumentException If the locale contains invalid characters
27 */
Matthias Andreas Benkard1ba53812022-12-27 17:32:58 +010028 public function getCatalogue(string $locale = null): MessageCatalogueInterface;
29
30 /**
31 * Returns all catalogues of the instance.
32 *
33 * @return MessageCatalogueInterface[]
34 */
35 public function getCatalogues(): array;
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +020036}