Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
26 | 2 | public function create(Dsn $dsn): TransportInterface |
|
27 | { |
||
28 | 2 | $stream = new SocketStream(); |
|
29 | 2 | $stream->disableTls(); |
|
30 | 2 | $stream->setPort((int) $dsn->getPort(25)); |
|
31 | 2 | $stream->setHost($dsn->getHost()); |
|
32 | |||
33 | 2 | return new SmtpTransport($stream, $this->dispatcher, $this->logger); |
|
34 | } |
||
36 |