| Total Complexity | 2 |
| Total Lines | 30 |
| Duplicated Lines | 0 % |
| Coverage | 53.33% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 10 | final class SwiftSmtpTransportProvider extends ServiceProvider |
||
| 11 | { |
||
| 12 | private string $host; |
||
| 13 | private int $port; |
||
| 14 | private ?string $encryption; |
||
| 15 | private string $username; |
||
| 16 | private string $password; |
||
| 17 | |||
| 18 | 8 | public function __construct(string $host, int $port, ?string $encryption, string $username, string $password) |
|
| 25 | 8 | } |
|
| 26 | |||
| 27 | 8 | public function register(Container $container): void |
|
| 43 |