Catalogue
2 years ago
Command
2 years ago
DataCollector
2 years ago
DependencyInjection
2 years ago
Dumper
2 years ago
Exception
2 years ago
Extractor
2 years ago
Formatter
2 years ago
Loader
2 years ago
Provider
2 years ago
Reader
2 years ago
Resources
2 years ago
Test
2 years ago
Util
2 years ago
Writer
2 years ago
DataCollectorTranslator.php
2 years ago
IdentityTranslator.php
2 years ago
LoggingTranslator.php
2 years ago
MessageCatalogue.php
2 years ago
MessageCatalogueInterface.php
2 years ago
MetadataAwareInterface.php
2 years ago
PseudoLocalizationTranslator.php
2 years ago
TranslatableMessage.php
2 years ago
Translator.php
2 years ago
TranslatorBag.php
2 years ago
TranslatorBagInterface.php
2 years ago
IdentityTranslator.php
26 lines
| 1 | <?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 | namespace IAWPSCOPED\Symfony\Component\Translation; |
| 12 | |
| 13 | use IAWPSCOPED\Symfony\Contracts\Translation\LocaleAwareInterface; |
| 14 | use IAWPSCOPED\Symfony\Contracts\Translation\TranslatorInterface; |
| 15 | use IAWPSCOPED\Symfony\Contracts\Translation\TranslatorTrait; |
| 16 | /** |
| 17 | * IdentityTranslator does not translate anything. |
| 18 | * |
| 19 | * @author Fabien Potencier <fabien@symfony.com> |
| 20 | * @internal |
| 21 | */ |
| 22 | class IdentityTranslator implements TranslatorInterface, LocaleAwareInterface |
| 23 | { |
| 24 | use TranslatorTrait; |
| 25 | } |
| 26 |