| Total Complexity | 2 |
| Total Lines | 21 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 7 | class SmtpTransportFactory extends AbstractTransportFactory |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * {@inheritdoc} |
||
| 11 | 2 | */ |
|
| 12 | public function __construct(array $options) |
||
| 13 | 2 | { |
|
| 14 | 2 | parent::__construct($options); |
|
| 15 | } |
||
| 16 | |||
| 17 | /** |
||
| 18 | * Creates a SmtpTransport. |
||
| 19 | * |
||
| 20 | * @return SmtpTransport the instance created |
||
| 21 | 2 | */ |
|
| 22 | public function create() |
||
| 28 | } |
||
| 29 | } |
||
| 30 |