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
ProviderFactoryInterface.php
25 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\Exception\IncompleteDsnException; |
| 14 | use IAWPSCOPED\Symfony\Component\Translation\Exception\UnsupportedSchemeException; |
| 15 | /** @internal */ |
| 16 | interface ProviderFactoryInterface |
| 17 | { |
| 18 | /** |
| 19 | * @throws UnsupportedSchemeException |
| 20 | * @throws IncompleteDsnException |
| 21 | */ |
| 22 | public function create(Dsn $dsn) : ProviderInterface; |
| 23 | public function supports(Dsn $dsn) : bool; |
| 24 | } |
| 25 |