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\IncompleteDsnException;
15use Symfony\Component\Mailer\Exception\UnsupportedSchemeException;
16
17/**
18 * @author Konstantin Myakshin <molodchick@gmail.com>
19 */
20interface TransportFactoryInterface
21{
22    /**
23     * @throws UnsupportedSchemeException
24     * @throws IncompleteDsnException
25     */
26    public function create(Dsn $dsn): TransportInterface;
27
28    public function supports(Dsn $dsn): bool;
29}
30