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
12namespace Symfony\Component\Mailer\Transport;
13
14use Symfony\Component\Mailer\Exception\UnsupportedSchemeException;
15
16/**
17 * @author Konstantin Myakshin <molodchick@gmail.com>
18 */
19final class SendmailTransportFactory extends AbstractTransportFactory
20{
21    public function create(Dsn $dsn): TransportInterface
22    {
23        if ('sendmail+smtp' === $dsn->getScheme() || 'sendmail' === $dsn->getScheme()) {
24            return new SendmailTransport($dsn->getOption('command'), $this->dispatcher, $this->logger);
25        }
26
27        throw new UnsupportedSchemeException($dsn, 'sendmail', $this->getSupportedSchemes());
28    }
29
30    protected function getSupportedSchemes(): array
31    {
32        return ['sendmail', 'sendmail+smtp'];
33    }
34}
35