AbstractProviderFactory.php
1 month ago
Dsn.php
1 month ago
FilteringProvider.php
1 month ago
NullProvider.php
2 years ago
NullProviderFactory.php
2 years ago
ProviderFactoryInterface.php
2 years ago
ProviderInterface.php
2 years ago
TranslationProviderCollection.php
2 years ago
TranslationProviderCollectionFactory.php
1 month ago
ProviderInterface.php
29 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\Provider; |
| 12 | |
| 13 | use IAWPSCOPED\Symfony\Component\Translation\TranslatorBag; |
| 14 | use IAWPSCOPED\Symfony\Component\Translation\TranslatorBagInterface; |
| 15 | /** @internal */ |
| 16 | interface ProviderInterface |
| 17 | { |
| 18 | public function __toString() : string; |
| 19 | /** |
| 20 | * Translations available in the TranslatorBag only must be created. |
| 21 | * Translations available in both the TranslatorBag and on the provider |
| 22 | * must be overwritten. |
| 23 | * Translations available on the provider only must be kept. |
| 24 | */ |
| 25 | public function write(TranslatorBagInterface $translatorBag) : void; |
| 26 | public function read(array $domains, array $locales) : TranslatorBag; |
| 27 | public function delete(TranslatorBagInterface $translatorBag) : void; |
| 28 | } |
| 29 |