AbstractProviderFactory.php
1 year ago
Dsn.php
1 year ago
FilteringProvider.php
1 year ago
NullProvider.php
1 year ago
NullProviderFactory.php
1 year ago
ProviderFactoryInterface.php
1 year ago
ProviderInterface.php
1 year ago
TranslationProviderCollection.php
1 year ago
TranslationProviderCollectionFactory.php
1 year ago
index.php
1 year ago
ProviderInterface.php
13 lines
| 1 | <?php |
| 2 | namespace MailPoetVendor\Symfony\Component\Translation\Provider; |
| 3 | if (!defined('ABSPATH')) exit; |
| 4 | use MailPoetVendor\Symfony\Component\Translation\TranslatorBag; |
| 5 | use MailPoetVendor\Symfony\Component\Translation\TranslatorBagInterface; |
| 6 | interface ProviderInterface |
| 7 | { |
| 8 | public function __toString() : string; |
| 9 | public function write(TranslatorBagInterface $translatorBag) : void; |
| 10 | public function read(array $domains, array $locales) : TranslatorBag; |
| 11 | public function delete(TranslatorBagInterface $translatorBag) : void; |
| 12 | } |
| 13 |