Total Complexity | 2 |
Total Lines | 18 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | class SendMailTransportFactory extends AbstractTransportFactory |
||
8 | { |
||
9 | 3 | /** |
|
10 | * {@inheritdoc} |
||
11 | 3 | */ |
|
12 | 3 | public function __construct(array $options) |
|
13 | { |
||
14 | parent::__construct($options); |
||
15 | } |
||
16 | |||
17 | /** |
||
18 | * Returns a SendMailTransport. |
||
19 | 3 | * |
|
20 | * @return SendMailTransport |
||
21 | 3 | */ |
|
22 | 3 | public function create() |
|
25 | } |
||
26 | } |
||
27 |