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
ProviderFactoryInterface.php
11 lines
| 1 | <?php |
| 2 | namespace MailPoetVendor\Symfony\Component\Translation\Provider; |
| 3 | if (!defined('ABSPATH')) exit; |
| 4 | use MailPoetVendor\Symfony\Component\Translation\Exception\IncompleteDsnException; |
| 5 | use MailPoetVendor\Symfony\Component\Translation\Exception\UnsupportedSchemeException; |
| 6 | interface ProviderFactoryInterface |
| 7 | { |
| 8 | public function create(Dsn $dsn) : ProviderInterface; |
| 9 | public function supports(Dsn $dsn) : bool; |
| 10 | } |
| 11 |