File Manager Lite
Dir:
/home/codewavebd/public_html/vendor/symfony/translation
Upload
[..]
CHANGELOG.md (8.33 KB)
Edit
Rename
Del
Catalogue/
Rename
Del
Command/
Rename
Del
DataCollector/
Rename
Del
DataCollectorTranslator.php (4.28 KB)
Edit
Rename
Del
DependencyInjection/
Rename
Del
Dumper/
Rename
Del
Exception/
Rename
Del
Extractor/
Rename
Del
Formatter/
Rename
Del
IdentityTranslator.php (661 B)
Edit
Rename
Del
LICENSE (1.04 KB)
Edit
Rename
Del
Loader/
Rename
Del
MessageCatalogue.php (9.79 KB)
Edit
Rename
Del
MetadataAwareInterface.php (1.34 KB)
Edit
Rename
Del
Provider/
Rename
Del
README.md (1.01 KB)
Edit
Rename
Del
Reader/
Rename
Del
Resources/
Rename
Del
Test/
Rename
Del
Translator.php (14.91 KB)
Edit
Rename
Del
TranslatorBag.php (3.05 KB)
Edit
Rename
Del
TranslatorBagInterface.php (917 B)
Edit
Rename
Del
Util/
Rename
Del
Writer/
Rename
Del
composer.json (1.92 KB)
Edit
Rename
Del
Edit: TranslatorBagInterface.php
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Translation; use Symfony\Component\Translation\Exception\InvalidArgumentException; /** * @author Abdellatif Ait boudad <a.aitboudad@gmail.com> */ interface TranslatorBagInterface { /** * Gets the catalogue by locale. * * @param string|null $locale The locale or null to use the default * * @throws InvalidArgumentException If the locale contains invalid characters */ public function getCatalogue(?string $locale = null): MessageCatalogueInterface; /** * Returns all catalogues of the instance. * * @return MessageCatalogueInterface[] */ public function getCatalogues(): array; }
Simpan