blob: 6ddbd8572fb9c9e4e5fd1b497f75a3213061a582 [file] [log] [blame]
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +02001<?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
12namespace Symfony\Component\Translation\Provider;
13
14use Symfony\Component\Translation\Exception\UnsupportedSchemeException;
15
16/**
17 * @author Mathieu Santostefano <msantostefano@protonmail.com>
18 *
19 * @experimental in 5.3
20 */
21final class NullProviderFactory extends AbstractProviderFactory
22{
23 public function create(Dsn $dsn): ProviderInterface
24 {
25 if ('null' === $dsn->getScheme()) {
26 return new NullProvider();
27 }
28
29 throw new UnsupportedSchemeException($dsn, 'null', $this->getSupportedSchemes());
30 }
31
32 protected function getSupportedSchemes(): array
33 {
34 return ['null'];
35 }
36}