blob: f350f1602af7797d7a00472f56a6a1d1cf5b070d [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>
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +020018 */
19final class NullProviderFactory extends AbstractProviderFactory
20{
21 public function create(Dsn $dsn): ProviderInterface
22 {
23 if ('null' === $dsn->getScheme()) {
24 return new NullProvider();
25 }
26
27 throw new UnsupportedSchemeException($dsn, 'null', $this->getSupportedSchemes());
28 }
29
30 protected function getSupportedSchemes(): array
31 {
32 return ['null'];
33 }
34}